-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvue.config.js
45 lines (45 loc) · 946 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
36
37
38
39
40
41
42
43
44
45
module.exports = {
// Configure project name:
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title = 'Sleep Diary Dashboard';
args[0].script_url = process.env.VUE_APP_SCRIPT_URL;
return args;
});
config
.performance
.maxEntrypointSize(1e6)
.maxAssetSize(1e6);
config
.module
.rule('worker')
.test(/worker\.js$/)
.use('worker-loader')
.loader('worker-loader')
.end()
},
// Ignore hidden files:
configureWebpack: {
devServer: {
watchOptions: {
ignored: [/\/\./],
},
},
},
transpileDependencies: [
'vuetify'
],
publicPath: process.env.NODE_ENV === 'production'
? '/dashboard/'
: './',
devServer: (
process.env.VUE_APP_DEV_SERVER
? {
disableHostCheck: true,
public: process.env.VUE_APP_DEV_SERVER,
}
: undefined
),
}