-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
29 lines (23 loc) · 901 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
var express = require("express");
var path = require("path");
var cookieParser = require("cookie-parser");
var logger = require("morgan");
const cors = require("cors"); // add at the top
var indexRouter = require("./routes/index");
var usersRouter = require("./routes/users");
var app = express();
app.use(cors()); // add after 'app' is created
app.use(logger("dev"));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
// app.use(express.static(path.join(__dirname, "public")));
// Serve static files from the React frontend app
app.use(express.static(path.join(__dirname, "/client/dist")));
app.use("/api", indexRouter);
app.use("/api/users", usersRouter);
// Anything that doesn't match the above, send back to index.html
app.get("*", (req, res) => {
res.sendFile(path.join(__dirname + "/client/dist/index.html"));
});
module.exports = app;