-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.demo.config.js
44 lines (41 loc) · 1.02 KB
/
webpack.demo.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
var path = require('path');
var webpack = require('webpack');
var entry = [ './demo/index.js' ];
if (process.env.NODE_ENV === 'development') {
entry = entry.concat([
'webpack-dev-server/client?http://localhost:3300',
'webpack/hot/only-dev-server'
]);
}
module.exports = {
devtool: 'eval',
entry: entry,
output: {
path: path.join(__dirname, 'demo'),
filename: 'bundle.js',
publicPath: '/demo/'
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
],
resolve: {
extensions: ['', '.js', '.jsx']
},
module: {
loaders: [{
test: /\.jsx?$/,
loaders: ['react-hot', 'babel'],
exclude: /build|node_modules/
}, {
test: /\.css$/,
loaders: ['style', 'css']
}, {
test: /\.scss$/,
loaders: ['style', 'css', 'sass']
}, {
test: /\.svg$/,
loaders: ['svg-url']
}]
}
};