-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
76 lines (73 loc) · 1.92 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
/*
* @Author: mingxing.huang
* @Date: 2020-07-09 17:48:47
*/
const path = require('path')
const CompressionWebpackPlugin = require('compression-webpack-plugin')
function resolve(dir) {
return path.join(__dirname, dir)
}
const isProd = process.env.NODE_ENV === 'production'
module.exports = {
publicPath: isProd ? '/' : '/',
devServer: {
open: true
},
configureWebpack: config => {
// 线上开启压缩
if (isProd) {
config.plugins.push(
new CompressionWebpackPlugin({
test: /\.js$|\.html$|\.css$/,
threshold: 4096 // 超过4kb,开启压缩
})
)
}
},
chainWebpack: config => {
// 设置别名
config.resolve.alias.set('@', resolve('src'))
// 配置svg-loader
// config.module.rules.delete("svg"); // 删除默认配置中处理svg,
config.module.rule('svg').exclude.add(resolve('src/icons'))
config.module
.rule('svg-sprite-loader')
.test(/\.svg$/)
.include.add(resolve('src/icons/svg'))
.end() //处理svg目录
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
})
config.module
.rule('md')
.test(/\.md/)
.use('vue-loader')
.loader('vue-loader')
.end()
.use('vue-markdown-loader')
.loader('vue-markdown-loader/lib/markdown-compiler')
.options({
raw: true,
preventExtract: false
})
},
css: {
loaderOptions: {
sass: {
// sass-loader v9语法
additionalData(content, loaderContext) {
const { resourcePath, rootContext } = loaderContext
const relativePath = path.relative(rootContext, resourcePath)
if (
relativePath.replace(/\\/g, '/') !== 'src/styles/variables.scss'
) {
return '@import "~@/styles/variables.scss";' + content
}
return content
}
}
}
}
}