projeto-hit/frontend/server.js

10 lines
321 B
JavaScript
Raw Permalink Normal View History

//simple express server to run frontend production build;
const express = require("express");
const path = require("path");
const app = express();
app.use(express.static(path.join(__dirname, "build")));
app.get("/*", function (req, res) {
res.sendFile(path.join(__dirname, "build", "index.html"));
});
2024-05-20 13:00:45 +00:00
app.listen(3331);