Spaces:
Runtime error
Runtime error
Update server.js
Browse files
server.js
CHANGED
|
@@ -616,6 +616,6 @@ app.get("*", (_req, res) => {
|
|
| 616 |
res.sendFile(path.join(__dirname, "dist", "index.html"));
|
| 617 |
});
|
| 618 |
|
| 619 |
-
app.listen(PORT, () => {
|
| 620 |
console.log(`Server is running on port ${PORT}`);
|
| 621 |
});
|
|
|
|
| 616 |
res.sendFile(path.join(__dirname, "dist", "index.html"));
|
| 617 |
});
|
| 618 |
|
| 619 |
+
app.listen(PORT, '0.0.0.0', () => {
|
| 620 |
console.log(`Server is running on port ${PORT}`);
|
| 621 |
});
|