-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathvue.config.js
72 lines (64 loc) · 1.96 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
const isProd = process.env.NODE_ENV === 'production';
// gzip
const CompressionWebpackPlugin = require('compression-webpack-plugin');
module.exports = {
publicPath: './',
configureWebpack: config => {
if (isProd) {
// 配置webpack 压缩
config.plugins.push(
new CompressionWebpackPlugin({
test: /\.js$|\.css$/, // 匹配文件名
threshold: 102400, // 对超过100kb进行压缩
deleteOriginalAssets: false, // 是否删除原文件
})
);
} else {
// 避免debugger无法准备定位代码
config.devtool = 'source-map';
}
},
chainWebpack: config => {
// 因为json-server也使用了public目录, 为了避免冲突, 重置vue-cli的静态资源地址为static
config
.plugin('html')
.tap(args => {
args[0].template = './static/index.html';
args[0].favicon = './static/favicon.ico';
args[0].title = '';
return args;
});
},
// 生产环境不需要 source map
// https://cli.vuejs.org/zh/config/#productionsourcemap
productionSourceMap: false,
// sass-loader
// https://vue-loader.vuejs.org/zh/guide/pre-processors.html#sass
css: {
extract: false,
sourceMap: true,
loaderOptions: {
sass: {
// https://webpack.docschina.org/loaders/sass-loader/#options
// https://webpack.docschina.org/loaders/sass-loader/#additionaldata
// https://cli.vuejs.org/guide/css.html#passing-options-to-pre-processor-loaders
additionalData: '@import "~@/style/variables.scss";',
},
},
},
devServer: {
proxy: {
'^/': {
target: process.env.VUE_APP_BASE_API,
changeOrigin: true, // 是否在本地虚拟一个服务器接受并代发请求
secure: false, // 是否拒绝使用了无效证书(ssl)的后端服务器
pathRewrite: {
'^/': '',
},
},
},
},
// 设置为 true 后你就可以在 Vue 组件中使用 template 选项了,但是这会让你的应用额外增加 10kb 左右。
// https://cli.vuejs.org/zh/config/#runtimecompiler
runtimeCompiler: true,
};