-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
33 lines (33 loc) · 1.01 KB
/
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
module.exports = {
lintOnSave: false,
publicPath: process.env.NODE_ENV === 'production' ? '/el-form-plus/' : '/',
configureWebpack: {
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx', '.vue', '.json'],
},
externals: process.env.NODE_ENV === 'development' ? {} : {
'element-ui': 'element-ui',
vue: 'vue',
},
},
chainWebpack: config => {
// These are some necessary steps changing the default webpack config of the Vue CLI
// that need to be changed in order for Typescript based components to generate their
// declaration (.d.ts) files.
//
// Discussed here https://github.com/vuejs/vue-cli/issues/1081
if (process.env.NODE_ENV === 'production') {
config.module.rule('ts').uses.delete('cache-loader')
config.module
.rule('ts')
.use('ts-loader')
.loader('ts-loader')
.tap(opts => {
opts.transpileOnly = false
opts.happyPackMode = false
return opts
})
}
},
parallel: false,
}