-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvue.config.js
40 lines (37 loc) · 1.43 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
const path = require('path');
const resolve = (dir) => {
return path.join(__dirname, dir);
};
const PUBLIC_URL = process.env.NODE_ENV === 'production' ? './' : './';
module.exports = {
publicPath: PUBLIC_URL,
lintOnSave: false,
chainWebpack: (config) => {
config.resolve.symlinks(true);
config.plugins.delete('preload');
config.plugins.delete('prefetch');
config.resolve.alias
.set('@', resolve('src')) // key,value自行定义,比如.set('@@', resolve('src/components'))
.set('@component', resolve('src/components')) // key,value自行定义,比如.set('@@', resolve('src/components'))
.set('@pages', resolve('src/pages')) // key,value自行定义,比如.set('@@', resolve('src/components'))
.set('@assets', resolve('src/assets')); // key,value自行定义,比如.set('@@', resolve('src/components'))
},
configureWebpack: () => {
if (process.env.NODE_ENV === 'production') {
return {
performance: {
hints: 'warning',
//入口起点的最大体积 整数类型(以字节为单位)
maxEntrypointSize: 50000000,
//生成文件的最大体积 整数类型(以字节为单位 300k)
maxAssetSize: 30000000,
//只给出 js 文件的性能提示
assetFilter: function(assetFilename) {
return assetFilename.endsWith('.js');
},
},
};
}
},
productionSourceMap: false,
};