-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdev.webpack.config.js
66 lines (65 loc) · 1.52 KB
/
dev.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
62
63
64
65
66
const path = require('path');
const webpack = require('webpack');
const cjson = require('cjson');
module.exports = {
entry: [
'react-hot-loader/patch',
'./src/index.js',
],
output: {
path: path.resolve(__dirname, 'build'),
filename: '[name]-bundle.js',
},
devServer: {
contentBase: [
path.join(__dirname, 'html'),
path.join(__dirname, 'assets'),
],
port: 9000,
hot: true,
publicPath: '/',
},
devtool: 'eval-source-map',
resolve: {
alias: {
'~': path.resolve('./src'),
},
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.optimize.CommonsChunkPlugin({
name: 'node-static',
filename: 'node-static.js',
minChunks(module, count) {
let context = module.context;
return context && context.indexOf('node_modules') >= 0;
},
}),
new webpack.optimize.CommonsChunkPlugin({ name: 'manifest' }),
],
module: {
rules: [
{
test: /\.css$/,
loaders: ['style-loader', 'css-loader'],
},
{
test: /\.scss$/,
loaders: ['style-loader', 'css-loader', 'sass-loader'],
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
loaders: [
'file?hash=sha512&digest=hex&name=[hash].[ext]',
'image-webpack?bypassOnDebug&optimizationLevel=7&interlaced=false',
],
},
{
test: /.jsx?$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: cjson.load('./.babelrc'),
},
],
},
};