-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
58 lines (56 loc) · 1.28 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
const path = require('path')
const pkg = require('./package.json')
const isProduction = process.env.NODE_ENV === 'production'
const resolve = dir => {
return path.join(__dirname, dir)
}
module.exports = {
pages: {
index: {
entry: './play/main.ts',
},
},
productionSourceMap: false,
assetsDir: './',
devServer: {
port: 3000,
hot: true,
open: true,
historyApiFallback: true,
disableHostCheck: true,
},
css: {
extract: process.env.VUE_APP_BUILD_MODE === 'NPM',
sourceMap: false,
},
configureWebpack: config => {
config.resolve.extensions = ['.js', '.vue', '.json', '.ts', '.tsx']
if (process.env.VUE_APP_BUILD_MODE === 'NPM') {
// config.externals = [{}]
}
},
chainWebpack: config => {
config.resolve.alias.set('@', resolve('packages'))
config.plugin('define').tap(args => {
args[0]['process.env'].version = JSON.stringify(pkg.version)
return args
})
config.module.rule('svg').exclude.add(resolve('packages/svg')).end()
config.module
.rule('icons')
.test(/\.svg$/)
.include.add(resolve('packages/svg'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'cake-ui-[name]',
})
.end()
if (isProduction) {
config.plugins.delete('prefetch')
} else {
config.resolve.symlinks(true)
}
},
}