forked from insin/react-hn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnwb.config.js
49 lines (48 loc) · 1.13 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
49
var HtmlWebpackPlugin = require('html-webpack-plugin')
var CommonsChunkPlugin = require('webpack/lib/optimize/CommonsChunkPlugin')
var ProvidePlugin = require('webpack/lib/ProvidePlugin')
module.exports = {
type: 'react-app',
babel: {
loose: true,
stage: false,
presets: ['es2015', 'stage-0'],
plugins: ['inferno']
},
webpack: {
loaders: {
babel: {
babelrc: true,
cacheDirectory: true
}
},
plugins: {
define: {
__VERSION__: JSON.stringify(require('./package.json').version)
}
},
extra: {
resolve: {
alias: {
'react': 'inferno-compat',
'react-dom': 'inferno-compat'
}
},
plugins: [
new ProvidePlugin({
'Inferno': 'react'
}),
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>'
})
]
}
}
}