forked from insin/react-hn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnwb.config.js
48 lines (47 loc) · 1.14 KB
/
nwb.config.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
var HtmlWebpackPlugin = require('html-webpack-plugin')
var CommonsChunkPlugin = require('webpack/lib/optimize/CommonsChunkPlugin')
var StatsWebpackPlugin = require('stats-webpack-plugin')
module.exports = {
type: 'react-app',
babel: {
loose: true,
stage: false,
presets: ['es2015', 'stage-0', 'react']
},
webpack: {
loaders: {
babel: {
babelrc: true,
cacheDirectory: true
}
},
plugins: {
define: {
__VERSION__: JSON.stringify(require('./package.json').version)
}
},
extra: {
plugins: [
new CommonsChunkPlugin({
names: ['core'],
filename: '[name].js',
minChunks: Infinity
}),
new HtmlWebpackPlugin({
filename: 'views/index.ejs',
template: 'src/views/index.ejs',
markup: '<div id="app"><%- markup %></div>'
}),
new StatsWebpackPlugin('../stats/webpack.json', {
assets: true,
performance: true,
timings: true,
children: false,
source: false,
modules: false,
chunks: false,
})
]
}
}
}