gnosticdev commited on
Commit
c3959e5
·
verified ·
1 Parent(s): ed747b1

Update server.js

Browse files
Files changed (1) hide show
  1. server.js +1 -1
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
  });