-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
vue.config.js
62 lines (57 loc) · 1.26 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
const path = require('path')
const isProd = process.env.NODE_ENV === 'production'
const isLib = process.env.VUE_APP_BUILD_MODE === 'lib'
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) {
config.performance
.set('maxEntrypointSize', 2500000)
.set('maxAssetSize', 2000000)
// drop console
config.optimization.minimizer('terser').tap((args) => {
args[0].terserOptions.compress.drop_console = true
return args
})
}
}
const setConfigureWebpack = config => {
if (isLib) {
config.output = {
...config.output,
library: 'VueSmartWidget',
libraryExport: 'default'
}
}
}
module.exports = {
publicPath: './',
pages: {
index: {
entry: resolve('app/main.js')
}
},
lintOnSave: true,
productionSourceMap: false,
chainWebpack: config => setChainWebpack(config),
configureWebpack: config => setConfigureWebpack(config),
css: {
extract: false
},
devServer: {
port: 8181,
open: true,
overlay: {
warnings: true,
errors: true
}
}
}