mirror of
https://github.com/chillzhuang/Saber.git
synced 2024-11-05 01:59:35 +08:00
39 lines
718 B
JavaScript
39 lines
718 B
JavaScript
module.exports = {
|
|
lintOnSave: true,
|
|
productionSourceMap: false,
|
|
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
|
|
.add('@/mock')
|
|
.end()
|
|
},
|
|
devServer: {
|
|
// 端口配置
|
|
port: 1888,
|
|
// 反向代理配置
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://localhost',
|
|
ws: true,
|
|
pathRewrite: {
|
|
'^/api': '/'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|