-
Notifications
You must be signed in to change notification settings - Fork 17
/
vue.config.js
55 lines (50 loc) · 1.09 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
const path = require('path')
const pkg = require('./package.json')
const { defineConfig } = require('@vue/cli-service')
function resolve (dir) {
return path.join(__dirname, '.', dir)
}
process.env.VUE_APP_VXE_VERSION = pkg.version
process.env.VUE_APP_VXE_ENV = 'development'
const externalMaps = {
'xe-utils': 'XEUtils'
}
const externals = {}
if (process.env.npm_lifecycle_event && process.env.npm_lifecycle_event.indexOf('lib') === 0) {
for (const key in externalMaps) {
const name = externalMaps[key]
const item = {
root: name,
commonjs: key,
commonjs2: key,
amd: key
}
externals[key] = item
}
}
module.exports = defineConfig({
transpileDependencies: true,
productionSourceMap: false,
pages: {
index: {
title: 'Vxe PC UI',
entry: 'examples/main.ts',
template: 'public/index.html',
filename: 'index.html'
}
},
configureWebpack: {
performance: {
hints: false
},
resolve: {
alias: {
'@': resolve('examples')
}
},
output: {
library: 'VxeUI'
},
externals
}
})