-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvue.config.js
49 lines (48 loc) · 1.17 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 UglifyJsPlugin = require('uglifyjs-webpack-plugin')
module.exports = {
css: {
loaderOptions: {
postcss: {
plugins: [
require('postcss-pxtorem')({
// 把px单位换算成rem单位
rootValue: 37.5, // 换算的基数
selectorBlackList: [],
propList: ['*'],
}),
],
},
},
},
configureWebpack: config => {
if (process.env.NODE_ENV === 'production') {
// 生产环境压缩代码和删除console
config.plugins.push(
new UglifyJsPlugin({
uglifyOptions: {
compress: {
drop_debugger: true,
drop_console: true,
},
warnings: false,
},
sourceMap: false,
parallel: true,
})
);
}
},
chainWebpack: (config) => {
//全局导入scss文件
const oneOfsMap = config.module.rule('scss').oneOfs.store;
oneOfsMap.forEach((item) => {
item
.use('sass-resources-loader')
.loader('sass-resources-loader')
.options({
resources: './src/assets/style/*.scss',
})
.end();
});
},
};