Commit 2582e6fe authored by 前端-许佳敏's avatar 前端-许佳敏

构建脚本

parent 668eafb4
......@@ -3,18 +3,22 @@
*
*/
// 如需在jenkins上进行构建, 可通过后续参数进行指定端口和代理api
//express模块
var express =require("express");
var app =express();
const path = require('path')
const { createProxyMiddleware } = require('http-proxy-middleware')
const port = 4396
const port = process.argv[2] || 4396
const apiProxyTarget = process.argv[3] || 'http://10.0.0.25:8100'
// 用于解决刷新后404问题
var history = require('connect-history-api-fallback');
app.use('/api',createProxyMiddleware(
{
target: 'http://10.0.0.25:8100',
target: apiProxyTarget,
changeOrigin: true,
pathRewrite: { '^/api' : '' }
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment