forked from x-extends/vxe-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
52 lines (49 loc) · 1.07 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
const path = require('path')
const pkg = require('./package.json')
function resolve (dir) {
return path.join(__dirname, '.', dir)
}
process.env.VUE_APP_VXE_TABLE_VERSION = pkg.version
process.env.VUE_APP_VXE_TABLE_ENV = 'development'
module.exports = {
productionSourceMap: false,
pages: {
index: {
entry: 'examples/main.ts',
template: 'public/index.html',
filename: 'index.html'
}
},
configureWebpack: {
performance: {
hints: false
},
resolve: {
alias: {
'@': resolve('examples')
}
},
output: {
library: 'VXETable'
}
},
chainWebpack (config) {
const XEUtils = {
root: 'XEUtils',
commonjs: 'xe-utils',
commonjs2: 'xe-utils',
amd: 'xe-utils'
}
if (process.env.npm_lifecycle_event && process.env.npm_lifecycle_event.indexOf('lib') === 0) {
if (config.has('externals')) {
config.externals
.set('xe-utils', XEUtils)
} else {
config
.set('externals', {
'xe-utils': XEUtils
})
}
}
}
}