-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.webpackrc.js
72 lines (70 loc) · 1.53 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
66
67
68
69
70
71
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 : false,
hash : true,
ignoreMomentLocale : true,
sass : {
includePaths: ['node_modules', 'src/style']
},
theme : 'src/style/theme.js',
html : {
'template': './src/index.ejs'
},
define : {
'USERNAME': 'CanisMinor',
'$dirname': __dirname,
'$isDev' : process.env.NODE_ENV === 'development'
},
proxy : {
'/api': {
target : 'http://screeps.canisminor.cc',
changeOrigin: true,
xfwd : true,
secure : true
}
},
extraPostCSSPlugins: [
pxtorem({
rootValue : 16,
propList : ['*'],
minPixelValue: 2
})
],
extraBabelPlugins : [
'transform-decorators-legacy',
'lodash',
['import', {libraryName: 'antd', libraryDirectory: 'es', style: true}]
],
env : {
development: {
extraBabelPlugins: [
'dva-hmr', [
'babel-plugin-styled-components', {
'displayName': false
}
]
]
},
production : {
browserslist : ['iOS >= 8', 'Android >= 4'],
commons : [
{
name : 'vendor',
filename: 'vendor.[chunkhash].js'
}
],
extraPostCSSPlugins: [
cssnano(
{safe: true},
{preset: ['default', {discardComments: {removeAll: true}}]})
]
}
}
};