-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.js
46 lines (39 loc) · 1.06 KB
/
server.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* eslint-disable i18next/no-literal-string */
/* eslint-disable @typescript-eslint/no-var-requires */
const express = require("express")
const { createProxyMiddleware } = require("http-proxy-middleware")
const next = require("next")
const port = process.env.PORT || 3008 /* 3002 */
const dev = process.env.NODE_ENV !== "production"
const app = next({ dev })
const handle = app.getRequestHandler()
const apiPaths = {
"/api": {
target: "http://localhost:3001",
pathRewrite: {
"^/api": "/api",
},
changeOrigin: true,
},
}
const isDevelopment = process.env.NODE_ENV !== "production"
app
.prepare()
.then(() => {
const server = express()
if (isDevelopment && process.env.USE_LOCAL_PROXY) {
server.use("/api", createProxyMiddleware(apiPaths["/api"]))
}
server.all("*", (req, res) => {
return handle(req, res)
})
server.listen(port, (err) => {
if (err) {
throw err
}
console.log(`> Ready on http://localhost:${port}`)
})
})
.catch((err) => {
console.log("Error:::::", err)
})