Files
dvcp_v2_webapp/vue.config.js
aixianling 392ffee1ea Merge branch 'dev' into build
# Conflicts:
#	package.json
#	vue.config.js
2022-08-18 17:33:48 +08:00

127 lines
3.0 KiB
JavaScript

const path = require('path');
module.exports = {
lintOnSave: false,
productionSourceMap: false,
css: {
loaderOptions: {
scss: {
data: `@import "~dvcp-ui/lib/styles/vars.scss";`
}
}
},
//多页面配置
pages: {
index: {
entry: 'examples/main.js',
template: 'public/index.html',
filename: 'index.html'
}
},
transpileDependencies: [/node_modules[\\\/]dvcp-ui[\\\/]lib[\\\/]js/],
chainWebpack: (config) => {
config.module
.rule('js')
.include.add(path.resolve(__dirname, 'packages'))
.add(path.resolve(__dirname, 'components'))
.add(path.resolve(__dirname, 'project'))
.add(path.resolve(__dirname, 'examples'))
.add(path.resolve(__dirname, 'node_modules/dvcp-ui'))
.end()
.use('babel')
.loader('babel-loader')
.tap((options) => options);
if (process.env.NODE_ENV == 'production') {
//生产环境,打包压缩js
config.plugin('uglifyjs-plugin').use('uglifyjs-webpack-plugin', [
{
include: /\/(packages|subPackages|core)/,
uglifyOptions: {
compress: {
drop_debugger: true, // console
drop_console: true,
pure_funcs: ['console.log'] // 移除console
},
warnings: false
},
sourceMap: false,
parallel: true
}
]);
}
},
devServer: {
host: '0.0.0.0', //主机地址
port: 80, //端口号
open: true,
// devtool: 'cheap-module-eval-source-map',
proxy: {
//设置代理,可解决跨5
'/lan': {
target: 'http://192.168.1.87:9000',
changeOrigin: true,
pathRewrite: {
//地址重写
'^/lan': '/'
}
},
'/test': {
target: 'http://192.168.1.105:9000',
changeOrigin: true,
pathRewrite: {
//地址重写
'^/test': '/'
}
},
'/saas': {
target: 'http://192.168.1.34:19898',
changeOrigin: true,
pathRewrite: {
//地址重写
'^/saas': '/'
}
},
'/omsapi': {
target: 'http://192.168.1.87:19898',
changeOrigin: true,
pathRewrite: {
//地址重写
'^/omsapi': '/'
}
},
'/ns': {
target: 'http://192.168.1.87:12525',
changeOrigin: true,
pathRewrite: {
//地址重写
'^/ns': '/'
}
},
'/lns': {
target: 'http://localhost:12525',
changeOrigin: true,
pathRewrite: {
//地址重写
'^/lns': '/'
}
},
'/xsjr': {
target: 'http://192.168.1.87:39896',
changeOrigin: true,
pathRewrite: {
//地址重写
'^/xsjr': '/'
}
},
'/wg': {
target: 'http://192.168.1.34:10000',
changeOrigin: true,
pathRewrite: {
//地址重写
'^/wg': '/'
}
}
},
disableHostCheck: true
}
};