-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.webpackrc
More file actions
32 lines (32 loc) · 788 Bytes
/
.webpackrc
File metadata and controls
32 lines (32 loc) · 788 Bytes
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
{
"publicPath": "/",
"extraBabelPlugins": [
[
"import", {
"libraryName": "antd",
"libraryDirectory": "es",
"style": "css"
}
]
],
"proxy": {
"/api": {
"target": "https://movie.douban.com/",
"changeOrigin": true,
"secure": false,
"pathRewrite": { "^/api" : "" }
},
"/2api": {
"target": "https://douban.fm/",
"changeOrigin": true,
"secure": false,
"pathRewrite": { "^/2api" : "" }
},
"/mock": {
"target": "",
"changeOrigin": true,
"secure": false,
"pathRewrite": { "^/mock" : "" }
}
}
}