-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcors.js
55 lines (50 loc) · 1.23 KB
/
cors.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
47
48
49
50
51
52
53
54
55
/* eslint-disable @typescript-eslint/no-var-requires */
/* eslint-disable prettier/prettier */
// server.js
const express = require('express');
const next = require('next');
const { createProxyMiddleware } = require('http-proxy-middleware');
const devProxy = {
'/api-text': {
target: 'http://127.0.0.1:8080/', // 端口自己配置合适的
pathRewrite: {
'^/api-text': '/'
},
changeOrigin: true
},
'/api': {
target: 'http://127.0.0.1:3000/', // 端口自己配置合适的
pathRewrite: {
'^/api': '/'
},
changeOrigin: true
}
};
const port = parseInt(process.env.PORT, 10) || 3002;
const dev = process.env.NODE_ENV !== 'production';
const app = next({
dev
});
const handle = app.getRequestHandler();
app
.prepare()
.then(() => {
const server = express();
if (dev && devProxy) {
Object.keys(devProxy).forEach(function (context) {
server.use(createProxyMiddleware(context, devProxy[context]));
});
}
server.all('*', (req, res) => {
handle(req, res);
});
server.listen(port, (err) => {
if (err) {
throw err;
}
console.log(`> Ready on http://localhost:${port}`);
});
})
.catch((err) => {
console.log(err);
});