-
Notifications
You must be signed in to change notification settings - Fork 452
/
vue.config.js
49 lines (48 loc) · 1.46 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
const CompressionPlugin = require('compression-webpack-plugin');
module.exports = {
devServer: {
host: '127.0.0.1',
port: 9999,
proxy: {
'/xboot': {
target: 'http://127.0.0.1:8888', // 请求本地 需要xboot后端项目
ws: true
},
'/foo': {
target: '<other_url>'
}
}
},
// 打包时不生成.map文件 避免看到源码
productionSourceMap: false,
// 部署优化
configureWebpack: {
// 使用CDN
// externals: {
// vue: 'Vue',
// 'vue-i18n': 'VueI18n',
// axios: 'axios',
// 'vue-router': 'VueRouter',
// vuex: 'Vuex',
// 'view-design': 'iview',
// echarts: 'echarts',
// apexcharts: 'ApexCharts',
// 'vue-apexcharts': 'VueApexCharts',
// dplayer: 'DPlayer',
// 'print-js': 'printJS',
// html2canvas: 'html2canvas',
// 'vue-json-pretty': 'VueJsonPretty',
// 'vue-lazyload': 'VueLazyload',
// 'js-cookie': 'Cookies',
// vuedraggable: 'vuedraggable',
// viewerjs: 'Viewer'
// },
// GZIP压缩
plugins: [
new CompressionPlugin({
test: /\.js$|\.html$|\.css/, // 匹配文件
threshold: 10240 // 对超过10k文件压缩
})
]
}
}