-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.dev.js
40 lines (38 loc) · 1.04 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
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var webpack = require('webpack');
var path = require('path');
module.exports = {
entry: [
'webpack-dev-server/client?http://0.0.0.0:3000', // WebpackDevServer host and port
'webpack/hot/only-dev-server', // "only" prevents reload on syntax errors
path.join(__dirname, 'app/app.js') // Your appʼs entry point
],
output: {
path: path.join(__dirname, 'dist/js/'),
filename: 'bundle.js',
publicPath: '/js/'
},
// devtool: "source-map",
module: {
loaders: [
{
test: /\.js$/,
loaders: ['react-hot', 'babel'],
include: path.join(__dirname, 'app'),
exclude: /node_modules/
},
{
test: /\.sass$/,
loaders: ["style", "css", "sass"],
include: path.join(__dirname, 'app/sass'),
}
],
},
// sassLoader: {
// includePaths: [path.resolve(__dirname, "app/sass")]
// },
plugins: [
new webpack.HotModuleReplacementPlugin()
// new ExtractTextPlugin('bundle.css')
],
};