forked from canisminor1990/canisminor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.webpackrc.js
66 lines (64 loc) · 1.47 KB
/
.webpackrc.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import cssnano from "cssnano";
import pxtorem from "postcss-pxtorem";
import vendor from "./src/vendor";
export default {
entry : {
index : "./src/index.js",
vendor: vendor
},
publicPath : "/",
disableCSSModules : true,
hash : true,
ignoreMomentLocale : true,
sass : {
includePaths: ["node_modules", "src/style"]
},
html : {
"template": "./src/index.ejs"
},
define : {
"$dirname": __dirname,
"$isDev" : process.env.NODE_ENV === "development"
},
extraPostCSSPlugins: [
pxtorem({
rootValue : 16,
propList : ["*"],
minPixelValue: 2
})
],
extraBabelPlugins : [
"transform-decorators-legacy",
"lodash",
],
env : {
development: {
proxy : {
'/v2': {
target : 'http://localhost:8200',
changeOrigin: true,
xfwd : true,
secure : true
}
},
extraBabelPlugins: [
"dva-hmr",
["babel-plugin-styled-components", { displayName: true }]
]
},
production : {
browserslist : ["iOS >= 8", "Android >= 4"],
commons : [
{
name : "vendor",
filename: "vendor.[chunkhash].js"
},
{
async: "common",
children: true,
minChunks: 2
},
],
}
}
};