Update index.js
Browse files
index.js
CHANGED
@@ -448,5 +448,5 @@ app.use((err, req, res, next) => {
|
|
448 |
res.status(500).json({ error: 'Internal server error', details: err.message });
|
449 |
});
|
450 |
|
451 |
-
const port = process.env.PORT ||
|
452 |
app.listen(port, () => console.log(`\n🚀 Addon running at http://localhost:${port}`));
|
|
|
448 |
res.status(500).json({ error: 'Internal server error', details: err.message });
|
449 |
});
|
450 |
|
451 |
+
const port = process.env.PORT || 3000;
|
452 |
app.listen(port, () => console.log(`\n🚀 Addon running at http://localhost:${port}`));
|