-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathvue.config.js
38 lines (34 loc) · 1.04 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
34
35
36
37
38
const path = require("path");
module.exports = {
outputDir: process.env.NODE_ENV === 'development' ? path.resolve(__dirname, 'dist_dev') : path.resolve(__dirname, 'dist'),
chainWebpack: config => {
if (process.env.NODE_ENV === 'development') {
config
.output
// .filename('[name].[hash].js')
.filename('[name].js')
.end()
}
// 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,
css: {
extract: true,
}
}