-
Notifications
You must be signed in to change notification settings - Fork 123
/
webpack.config.js
88 lines (85 loc) · 1.66 KB
/
webpack.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
const path = require('path');
const autoprefixer = require('autoprefixer');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
process.env.NODE_ENV = 'development';
module.exports = {
cache: true,
debug: true,
devtool: 'source-map',
devServer: {
inline: true,
port: 3333
},
resolve: {
root: path.resolve('src'),
extensions: ['.js', '.json', '.jsx', ''],
},
resolveLoader: {
root: [path.join(process.cwd(), 'node_modules')]
},
entry: [
require.resolve('react-dev-utils/webpackHotDevClient'),
path.resolve('src/index.jsx'),
],
output: {
path: path.resolve('build'),
filename: 'static/js/bundle.js',
sourceMapFilename: 'bundle.map',
publicPath: '/'
},
plugins: [
new HtmlWebpackPlugin({
inject: true,
template: path.resolve('public/index.html'),
}),
new webpack.HotModuleReplacementPlugin()
],
module: {
preLoaders: [{
test: /\.(js|jsx)$/,
loader: 'eslint',
exclude: [/node_modules/]
}],
loaders: [{
exclude: [
/\.html$/,
/\.(js|jsx)$/,
/\.scss$/,
/\.css$/,
/\.json$/,
/\.svg$/
],
loader: 'url',
query: {
limit: 10000,
name: 'static/media/[name].[hash:8].[ext]'
}
}, {
test: /\.css$/,
loader: 'style!css?importLoaders=1!postcss'
},{
test: /\.scss$/,
loader: 'style!css?importLoaders=1&localIdentName=[local]_[hash:base64:5]!postcss!sass'
},{
test: /\.(js|jsx)$/,
include: [/(src|test)/],
loader: 'babel'
}]
},
postcss: function() {
return [
autoprefixer({
browsers: [
'>1%',
'last 4 versions',
'Firefox ESR',
'not ie < 9',
]
}),
];
},
eslint: {
failOnError: true,
}
};