-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathwebpack.config.js
51 lines (48 loc) · 1.32 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
const webpack = require('webpack');
const autoprefixer = require('autoprefixer');
function getEntrySources(sources) {
if (process.env.NODE_ENV !== 'production') {
sources.push('webpack-dev-server/client?http://localhost:8080');
sources.push('webpack/hot/only-dev-server');
}
return sources;
}
module.exports = {
devtool: process.env.NODE_ENV !== 'production' ? 'eval-source-map' : '',
entry: {
bundle: getEntrySources([
'./src/index.js',
]),
},
output: {
publicPath: 'http://localhost:8080/',
filename: 'dist/[name].js',
},
plugins: [
new webpack.DefinePlugin({
__DEV__: process.env.NODE_ENV !== 'production',
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV),
}),
],
module: {
preLoaders: [{
test: /\.js$/,
loader: 'source-map-loader',
}],
loaders: [{
test: /\.js$/,
loader: 'react-hot!babel!eslint-loader',
exclude: /node_modules/,
}, {
test: /\.css$/,
loader: 'style-loader!css-loader!postcss-loader!cssnext-loader',
}, {
test: /\.(png|jpg|jpeg|gif|svg)$/,
loader: 'url-loader?prefix=img/&limit=53248',
}, {
test: /\.(woff|woff2|ttf|eot)$/,
loader: 'url-loader?prefix=font/&limit=53248',
}],
},
postcss: [ autoprefixer({ browsers: ['last 2 versions'] }) ],
};