forked from moroshko/react-autowhatever
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.dev.config.js
48 lines (41 loc) · 1.15 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
var path = require('path');
var webpack = require('webpack');
var autoprefixer = require('autoprefixer');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
entry: [
'webpack-dev-server/client?http://localhost:3000',
'webpack/hot/only-dev-server',
'./demo/src/index'
],
output: {
path: path.join(__dirname, 'dist'), // Must be an absolute path
filename: 'index.js',
publicPath: '/demo/dist'
},
module: {
loaders: [{
test: /\.js$/,
loaders: ['react-hot', 'babel'],
include: [
path.join(__dirname, 'src'), // Must be an absolute path
path.join(__dirname, 'demo', 'src') // Must be an absolute path
]
}, {
test: /\.less$/,
loader: ExtractTextPlugin.extract('style', 'css?modules&localIdentName=[name]__[local]___[hash:base64:5]!postcss!less'),
exclude: /node_modules/
}]
},
postcss: function() {
return [autoprefixer];
},
resolve: {
modulesDirectories: ['node_modules', 'components', 'src']
},
devtool: 'source-map',
plugins: [
new webpack.HotModuleReplacementPlugin(),
new ExtractTextPlugin('app.css')
]
};