Update server.js

This commit is contained in:
Leandro Palmeira 2025-03-17 12:12:07 -03:00 committed by GitHub
parent 4f47c29dae
commit 5f12ced8d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,5 +6,5 @@ app.use(express.static(path.join(__dirname, "build")));
app.get("/*", function (req, res) {
res.sendFile(path.join(__dirname, "build", "index.html"));
});
app.listen(3500);
app.listen(3000);