-
barnettZQG authoredab062ea2
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
var path = require('path');
export default {
"entry" : "src/index.js",
"extraBabelPlugins" : [
"transform-decorators-legacy",
[
"import", {
"libraryName": "antd",
"libraryDirectory": "es",
"style": true
}
]
],
"outputPath" : path.resolve(__dirname, '../../dists'), //
"env" : {
"development": {
"extraBabelPlugins": ["dva-hmr"]
}
},
"ignoreMomentLocale" : true,
"theme" : "./src/theme.js",
"html" : {
"filename": "../../templates/index.html", //
"template": "./src/index.ejs"
},
"publicPath" : "/static/dists/", //
//"publicPath" : "/", ///
"disableDynamicImport" : true,
"hash" : true,
"proxy" : {
"/api": {
"target": "http://5000.gra4b2e5.goodrain.ali-hz.goodrain.net:10080/",
"changeOrigin": true,
"pathRewrite": {
"^/api": ""
}
}
}
}