-
Notifications
You must be signed in to change notification settings - Fork 35
/
vue.config.js
35 lines (35 loc) · 1018 Bytes
/
vue.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
module.exports = {
chainWebpack: config => {
// 生产环境
config.when(process.env.NODE_ENV === 'production', config => {
config.entry('app').clear().add('./src/main-prod.js')
// 通过 externals 加载外部 CDN 资源
config.set('externals', {
vue: 'Vue',
'vue-router': 'VueRouter',
axios: 'axios',
lodash: '_',
echarts: 'echarts',
nprogress: 'NProgress',
'vue-quill-editor': 'VueQuillEditor'
})
// 通过.tap 链式操作修改插件里面相关参数
config.plugin('html').tap(args => {
args[0].isProd = true
return args
})
})
// 开发环境
config.when(process.env.NODE_ENV === 'development', config => {
config.entry('app').clear().add('./src/main-dev.js')
// 通过.tap 链式操作修改插件里面相关参数
config.plugin('html').tap(args => {
args[0].isProd = false
return args
})
})
},
css: {
extract: false
}
}