-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvue.config.js
45 lines (41 loc) · 920 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
const path = require('path')
const isProd = process.env.NODE_ENV === 'production'
const resolve = dir => path.join(__dirname, dir)
const setChainWebpack = config => {
config.resolve.alias
.set('@', path.resolve('app'))
config.module
.rule('js')
.include
.add('/app')
.end()
.use('babel')
.loader('babel-loader')
if (isProd) {
// drop console
config.optimization.minimizer('terser').tap((args) => {
args[0].terserOptions.compress.drop_console = true
return args
})
}
}
module.exports = {
publicPath: './',
pages: {
index: {
entry: resolve('app/main.js')
}
},
lintOnSave: true,
productionSourceMap: false,
chainWebpack: config => setChainWebpack(config),
// configureWebpack: config => setConfigureWebpack(config),
devServer: {
port: 8383,
open: true,
overlay: {
warnings: true,
errors: true
}
}
}