Commit 9d35ac2d authored by 前端-许佳敏's avatar 前端-许佳敏

脚本

parent ab61c233
......@@ -3,16 +3,16 @@
*
*/
// 如需在jenkins上进行构建, 可通过后续参数进行指定端口和代理api
//express模块
console.log(process.argv)
var express =require("express");
var app =express();
const path = require('path')
const { createProxyMiddleware } = require('http-proxy-middleware')
const port = process.argv[2] || 4396
const apiProxyTarget = process.argv[3] || 'http://10.0.0.25:8100'
const port = 4396
const apiProxyTarget = 'http://10.0.0.25:8100'
// 用于解决刷新后404问题
var history = require('connect-history-api-fallback');
......
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