-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.dev.js
More file actions
60 lines (59 loc) · 1.84 KB
/
webpack.config.dev.js
File metadata and controls
60 lines (59 loc) · 1.84 KB
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
var path = require('path');
var webpack = require('webpack');
module.exports = {
devtool: 'cheap-module-eval-source-map',
externals: {
'cheerio': 'window',
'react/lib/ExecutionEnvironment': true,
'react/lib/ReactContext': true,
},
entry: [
'babel-polyfill',
'eventsource-polyfill', // necessary for hot reloading with IE
'webpack-hot-middleware/client',
'./src/index'
],
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
publicPath: '/static/'
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new webpack.ProvidePlugin({
'fetch': 'imports?this=>global!exports?global.fetch!whatwg-fetch'
})
],
module: {
loaders: [
{
test: /\.jsx?/,
loader: 'babel',
include: path.join(__dirname, 'src'),
exclude: [/(node_modules|bower_components)/, /\.test\.jsx?$/],
query: {
presets: ['airbnb', 'react', 'es2015', 'stage-0'],
plugins: [
'transform-object-rest-spread',[
'react-transform', {
transforms: [{
transform: 'react-transform-hmr',
imports: ['react'],
locals: ['module']
}]
}]]
}
},
{ test: /\.woff2?$/, loader: 'url-loader?limit=10000&minetype=application/font-woff' },
{ test: /\.ttf$/, loader: 'file-loader' },
{ test: /\.eot$/, loader: 'file-loader' },
{ test: /\.svg$/, loader: 'file-loader' },
{ test: /\.(png|gif)$/, loader: 'file-loader' },
{ test: /\.(sass|scss)$/, loader: 'style!css!sass'},
{ test: /\.json$/, loader: 'json-loader'},
{ test: /\.css$/, loader: 'style-loader!css-loader'},
{ test: /\.jpg$/, loader: 'file-loader' },
]
}
};