-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathvue.config.js
38 lines (38 loc) · 955 Bytes
/
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
const path = require('path')
module.exports = {
// 基本路径
publicPath: '/',
// productionSourceMap:{ type:Bollean,default:true } 生产源映射
// 如果您不需要生产时的源映射,那么将此设置为false可以加速生产构建
productionSourceMap: false,
css: {
loaderOptions: {
stylus: {
javascriptEnabled: true
}
}
},
chainWebpack: config => {
const types = ['vue-modules', 'vue', 'normal-modules', 'normal']
types.forEach(type => addStyleResource(config.module.rule('stylus').oneOf(type)))
},
devServer: {
proxy: {
'/mock': {
target: 'http://localhost:80',
pathRewrite: {
'^/mock': '/mock'
}
}
}
}
}
function addStyleResource (rule) {
rule.use('style-resource')
.loader('style-resources-loader')
.options({
patterns: [
path.resolve(__dirname, './src/assets/stylus/golbal.styl')
]
})
}