-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
39 lines (38 loc) · 1.21 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
module.exports={
css: {
extract:false,//css分离 生产环境下是 true,开发环境下是 false
modules: true, //开启css模块化
loaderOptions:{//向 CSS 相关的 loader 传递选项
sass: {
data: `@import "@/assets/scss/base.scss";`
// 这里的选项会传递给 css-loader
},
postcss: {
// 这里的选项会传递给 postcss-loader
}
}
},
devServer:{
// proxy: 'http://localhost:3000',//告诉开发服务器将任何未知请求 (没有匹配到静态文件的请求) 代理到http://localhost:4000。
// host: '0.0.0.0',
port: 8003,
open: true,
// https: false,
// proxy: true,
proxy: {
'/360img': {
target: 'http://wallpaper.apc.360.cn/index.php',
ws: true,
changeOrigin: true
},
'/newlist': {
target: 'http://c.3g.163.com/nc/article/list',
ws: true,
changeOrigin: true
},
}// string | Object
},
lintOnSave:false, //关闭esling警告
lintOnSave: process.env.NODE_ENV !== 'production', //生产构建时禁用
productionSourceMap:false, //打包不携带map文件
}