-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvue.config.js
137 lines (135 loc) · 3.95 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
const path = require('path')
const SkeletonWebpackPlugin = require('vue-skeleton-webpack-plugin')
const CompressionWebpackPlugin = require('compression-webpack-plugin')
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
const productionGzipExtensions = ['js', 'css']
const isProduction = process.env.NODE_ENV === 'production'
const webpack = require('webpack')
function resolve(dir) {
return path.join(__dirname, dir)
}
const cdn = {
css: [
'https://unpkg.com/[email protected]/dist/antd.min.css',
'https://cdn.bootcss.com/highlight.js/9.13.1/languages/css.min.js',
'//at.alicdn.com/t/font_818526_kp4owxkyqvn.css'
],
js: [
'//at.alicdn.com/t/font_818526_b07rnmer7ie.js',
'https://cdn.bootcss.com/vue/2.5.22/vue.min.js',
'https://cdn.bootcss.com/vue-router/3.0.2/vue-router.min.js',
'https://cdn.bootcss.com/axios/0.19.0-beta.1/axios.min.js',
'https://cdn.bootcss.com/moment.js/2.20.1/moment.min.js',
'https://cdn.bootcss.com/moment.js/2.20.1/locale/zh-cn.js',
'https://unpkg.com/[email protected]/dist/antd.min.js',
'https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js',
'https://cdn.bootcss.com/highlight.js/9.13.1/highlight.min.js',
'https://unpkg.com/@antv/[email protected]/build/g2.js',
'https://unpkg.com/[email protected]/dist/apexcharts.js',
'https://unpkg.com/[email protected]/dist/mavon-editor.js',
'https://unpkg.com/[email protected]/lodash.js',
'https://unpkg.com/[email protected]/ckeditor.js'
],
}
module.exports = {
// 项目部署的基本url
baseUrl: '',
// 打包到dist文件下
outputDir: 'dist',
// 静态资源目录
assetsDir: 'static',
// 关闭生产 SourceMap
productionSourceMap: false,
css: {
// 是否使用css分离插件 ExtractTextPlugin
extract: true, // 开启 CSS source maps?
sourceMap: false, // css预设器配置项
loaderOptions: {}, // 启用 CSS modules for all css / pre-processor files.
modules: false,
},
// 加入markdown解析
chainWebpack: config => {
config.resolve.alias.set('@$', resolve('src'))
config.module
.rule('md')
.test(/\.md$/)
.use('vue-loader')
.loader('raw-loader')
if (isProduction) {
config.plugin('html').tap(args => {
args[0].cdn = cdn
return args
})
}
},
// FIXME: 压缩的似乎无效
configureWebpack: config => {
if (isProduction) {
config.externals = {
vue: 'Vue',
'vue-router': 'VueRouter',
moment: 'moment',
'ant-design-vue': 'antd',
jquery: '$',
axios: 'axios',
'@antv/g2': 'G2',
'apexcharts': 'ApexCharts',
'lodash': '_',
// 'mavon-editor': 'mavon-editor',
// 'wangEditor': 'E',
'highlight.js': 'hljs',
}
// 打包生产.gz包
config.plugins.push(
new CompressionWebpackPlugin({
algorithm: 'gzip',
test: new RegExp('\\.(' + productionGzipExtensions.join('|') + ')$'),
threshold: 10240,
minRatio: 0.8,
})
)
// 添加自定义代码压缩配置
config.plugins.push(
new UglifyJsPlugin({
uglifyOptions: {
compress: {
warnings: false,
drop_debugger: true,
drop_console: true,
},
},
sourceMap: false,
parallel: true,
})
)
}
config.plugins.push(
/* 骨架屏配置 */
new SkeletonWebpackPlugin({
webpackConfig: {
entry: {
app: path.join(__dirname, './src/skeleton.js'),
},
},
minimize: true,
quiet: true,
})
)
config.plugins.push(
/* 精简moment打包体积 */
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
)
},
devServer: {
// 代理
proxy: {
'/ucar': {
target: 'http://120.78.174.212:8001',
changeOrigin: true,
pathRewrite: {
// '/api': '',
},
},
},
},
}