12345678910111213141516171819202122232425262728293031323334 |
- module.exports = {
- publicPath: "/entpc",
- productionSourceMap: false,
- lintOnSave: false,
- css:{
- loaderOptions:{
- sass: {
- prependData: `@import "@/style/global_variable.scss";`// 全局引入
- },
- }
- },
- devServer: {
- open: true,
- port: "8086",
- hot: true,
- disableHostCheck: true,
- proxy: {
- "/api": {
- // target: "https://app2-jytest.jianyu360.cn",
- target: "http://192.168.20.241:813",
- // target: "http://127.0.0.1:812",
- // target:'http://192.168.20.51:815/entbase',
- // target:'http://192.168.20.51:813/entdataexport',
- // target:'http://192.168.20.214:812/entniche',
- changeOrigin: true,
- ws: true,
- pathRewrite: {
- "^/api": ""
- }
- },
- }
- }
- }
|