-
Notifications
You must be signed in to change notification settings - Fork 7
/
webpack.config.dev.js
44 lines (43 loc) · 1.06 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
const path = require('path');
const webpack = require('webpack');
const autoprefixer = require('autoprefixer');
const cssnext = require('postcss-cssnext');
const impy = require('postcss-import');
module.exports = {
devtool: 'cheap-module-eval-source-map',
entry: [
'eventsource-polyfill',
'webpack-hot-middleware/client',
'./src/App'
],
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
publicPath: '/static/'
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
],
module: {
loaders: [
{
test: /\.jsx?/,
exclude: /(node_modules|bower_components)/,
loaders: ['babel'],
include: path.join(__dirname, 'src')
},
{
test: /\.css$/,
exclude: /(node_modules|bower_components)/,
loaders: ['style-loader', 'css-loader', 'postcss-loader']
}
]
},
postcss: function () {
return {
defaults: [impy, autoprefixer, cssnext],
cleaner: [autoprefixer({ browsers: ['last 2 version'] })]
};
}
};