-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.roadhogrc
48 lines (48 loc) · 878 Bytes
/
.roadhogrc
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
{
"entry": "src/index.js",
"disableCSSModules": false,
"publicPath": "http://cdn.yinfengblog.com/",
"outputPath": "./dist",
"extraBabelPlugins": [
"transform-runtime",
[
"import",
{
"libraryName": "antd",
"libarayDirectory": "lib",
"style": true
}
]
],
"extraPostCSSPlugins": [],
"proxy": {
"/api": {
"target": "http://localhost:7001",
"secure": false
}
},
"cssModulesExclude": [
"./src/index.scss"
],
"externals": {
"react": "React",
"react-dom": "ReactDOM",
"react-quill": "ReactQuill",
"moment": "moment",
"../moment": "moment"
},
"hash": true,
"sass": true,
"multipage": false,
"define": null,
"theme": {
"primary-color": "#2ca6cb"
},
"env": {
"development": {
"extraBabelPlugins": [
"dva-hmr"
]
}
}
}