1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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: {
- "/entbase": {
- // 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',
- // target:'http://192.168.20.214:815',
- changeOrigin: true,
- ws: true,
- pathRewrite: {
- "^/entbase": "/entbase"
- }
- },
- "/entniche": {
- // 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.214:812',
- changeOrigin: true,
- ws: true,
- pathRewrite: {
- "^/entniche": "/entniche"
- }
- },
- }
- }
- }
|