forked from vasanthk/react-es6-webpack-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
61 lines (59 loc) · 1.16 KB
/
webpack.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
50
51
52
53
54
55
56
57
58
59
60
61
const CopyWebpackPlugin = require('copy-webpack-plugin');
const paths = {
node: './node_modules'
};
module.exports = {
devtool: 'source-map',
entry: {
index: [
'webpack-dev-server/client?http://localhost:8080',
'webpack/hot/only-dev-server',
'./scripts/index'
]
},
output: {
publicPath: 'http://localhost:8080/',
filename: 'dev/js/bundle.js'
},
plugins: [
new CopyWebpackPlugin([
{ context: `${paths.node}/onsenui/css/`,
from: '**/*',
to: 'dev/css'
}
])
],
module: {
loaders: [
{
test: /\.js$/,
loaders: ['react-hot', 'jsx', 'babel'],
exclude: /node_modules/
},
{
test: /\.scss$/,
loaders: ['style', 'css', 'sass']
},
{
test: /\.(jpg|jpeg|png)$/,
loaders: ['file']
},
{
test: /\.json$/,
loaders: ['json']
}
]
},
devServer: {
inline: true,
headers: {
'Access-Control-Allow-Origin': '*'
}
},
externals: {
cheerio: 'window',
'react/addons': true,
'react/lib/ExecutionEnvironment': true,
'react/lib/ReactContext': true,
},
};