-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
64 lines (63 loc) · 3.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
59
60
61
62
63
64
const path = require('path')
const CompressionPlugin = require('compression-webpack-plugin') // compression-webpack-plugin插件需要npm安装
function resolve(dir) {
return path.join(__dirname, dir)
}
module.exports = {
lintOnSave: 'error', // 设置eslint报错时停止代码编译
productionSourceMap: false, // 不需要生产环境的 source map(减小dist文件大小,加速构建)
devServer: {
open: true, // npm run serve后自动打开页面
host: '0.0.0.0', // 匹配本机IP地址(默认是0.0.0.0)
port: 8989, // 开发服务器运行端口号
proxy: { // 配置跨域代理
// change xxx-api/login => mock/login
// detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: {
// target: `http://test.xxx.com`, // 跨域代理 开发环境 test.xxx.com
target: `http://127.0.0.1:8888`, // 生产环境 xxx.com
// target: `http://127.0.0.1:8888/test/`, // 开发环境
changeOrigin: true,
pathRewrite: {
['^' + process.env.VUE_APP_BASE_API]: ''
}
}
},
// before: require('./mock/mock-server.js')
},
chainWebpack: (config) => {
// 移除 prefetch 插件(针对生产环境首屏请求数进行优化)
config.plugins.delete('prefetch')
// 移除 preload 插件(针对生产环境首屏请求数进行优化) preload 插件的用途:https://cli.vuejs.org/zh/guide/html-and-static-assets.html#preload
config.plugins.delete('preload')
// 第1个参数:别名,第2个参数:路径 (设置路径别名)
config.resolve.alias
.set('@pages', resolve('./src/page'))
.set('@router', resolve('./src/router'))
.set('@store', resolve('./src/store'))
.set('@utils', resolve('./src/utils'))
},
// 配置打包 js、css文件为.gz格式,优化加载速度 (参考:https://blog.csdn.net/qq_31677507/article/details/102742196)
configureWebpack: config => {
if (process.env.NODE_ENV === 'production') {
return {
plugins: [new CompressionPlugin({
test: /\.js$|\.css/, // 匹配文件
threshold: 10240, // 超过10kB的数据进行压缩
deleteOriginalAssets: false // 是否删除原文件 (原文件也建议发布到服务器以支持不兼容gzip的浏览器)
})],
performance: { // 生产环境构建代码文件超出以下配置大小会在命令行中显示警告
hints: 'warning',
// 入口起点的最大体积 整数类型(以字节为单位,默认值是:250000 (bytes))
maxEntrypointSize: 5000000,
// 生成文件的最大体积 整数类型(以字节为单位,默认值是:250000 (bytes))
maxAssetSize: 3000000
// // 只给出 js 文件的性能提示
// assetFilter: function (assetFilename) {
// return assetFilename.endsWith('.js')
// }
}
}
}
}
}