11 lines
351 B
JavaScript
11 lines
351 B
JavaScript
const express = require("express");
|
|
const cors = require("cors");
|
|
const path = require("path");
|
|
const buildPath = path.resolve(__dirname, "../dist");
|
|
const server = express();
|
|
|
|
server.use(cors({ origin: "http://localhost:3000" }));
|
|
|
|
server.use("/", express.static(buildPath));
|
|
|
|
server.listen(7200, () => console.log("Server listening on port 7200"));
|