forked from moroshko/react-autosuggest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.dev.config.js
37 lines (33 loc) · 963 Bytes
/
webpack.dev.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
var path = require('path');
var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
entry: [
'webpack-dev-server/client?http://localhost:3000',
'webpack/hot/only-dev-server',
'./examples/src/app.js'
],
output: {
path: path.join(__dirname, 'examples', 'dist'), // Must be an absolute path
filename: 'app.js',
publicPath: '/examples/dist'
},
module: {
loaders: [{
test: /\.js$/,
loaders: ['react-hot', 'babel', 'eslint'],
include: [
path.join(__dirname, 'src'), // Must be an absolute path
path.join(__dirname, 'examples', 'src') // Must be an absolute path
]
}, {
test: /\.less$/,
loader: ExtractTextPlugin.extract('style', 'css!less'),
exclude: /node_modules/
}]
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new ExtractTextPlugin('app.css', { allChunks: true })
]
};