forked from nukeop/react-ui-cards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.dev.js
46 lines (44 loc) · 1.13 KB
/
webpack.config.dev.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
const webpack = require('webpack');
const path = require('path');
const DEMO_DIR = path.resolve(__dirname, 'demo');
module.exports = {
entry: [
"react-hot-loader/patch",
'webpack-dev-server/client?http://localhost:8080',
'webpack/hot/only-dev-server',
path.resolve(DEMO_DIR, 'index.jsx')
],
output: {
path: DEMO_DIR,
filename: 'bundle.js',
publicPath: 'http://localhost:8080/'
},
devServer: {
hot: true,
contentBase: DEMO_DIR,
publicPath: 'http://localhost:8080/'
},
mode: 'development',
module: {
rules: [
{
test: /\.jsx?/,
loader: 'babel-loader',
exclude: /node_modules/
}, {
test: /\.css/,
loader: 'style-loader!css-loader?modules=true&localIdentName=[name]__[local]___[hash:base64:5]'
}, {
test: /\.scss$/,
loader: 'style-loader!css-loader?importLoaders=1&modules&localIdentName=[name]__[local]___[hash:base64:5]!sass-loader'
}, {
test: /\.svg$/,
loader: 'raw-loader'
}
]
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin()
]
};