加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
feng 提交于 2022-02-24 13:32 . 初始化
// const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
module.exports = {
publicPath: "",
lintOnSave: true,
productionSourceMap: false,
// configureWebpack: config => {
// if (process.env.NODE_ENV === 'production') {
// return {
// plugins: [
// new BundleAnalyzerPlugin()
// ]
// }
// }
// },
chainWebpack: (config) => {
//忽略的打包文件
config.externals({
'vue': 'Vue',
'vue-router': 'VueRouter',
'vuex': 'Vuex',
'axios': 'axios',
'element-ui': 'ELEMENT',
})
const entry = config.entry('app')
entry
.add('babel-polyfill')
.end()
entry
.add('classlist-polyfill')
.end()
entry
.end()
},
css: {
extract: {ignoreOrder: true}
},
devServer: {
port: process.env.VUE_APP_PORT,
proxy: {
[process.env.VUE_APP_BASE_URL]: {
target: 'http://127.0.0.1:10010',
// target: 'http://192.168.1.5:8001',
ws: true,
pathRewrite: {
['^' + process.env.VUE_APP_BASE_URL]: '/'
}
},
'/system': {
target: 'http://127.0.0.1:10010',
// target: 'http://192.168.1.5:8001',
ws: true,
pathRewrite: {
['^/system']: '/system'
}
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化