-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
41 lines (38 loc) · 1000 Bytes
/
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
const webpack = require('webpack');
const path = require('path');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const config = {
entry: ['babel-polyfill', './src/index.js'],
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
},
devtool: 'cheap-module-source-map',
module: {
loaders: [{
test: /.jsx?$/,
exclude: /\/node_modules\//,
loader: 'babel-loader',
}, {
test: /.less$/,
loaders: ['style-loader', 'css-loader', 'less-loader'],
}, {
test: /\.css$/,
loaders: ['style-loader', 'css-loader'],
}],
},
resolve: {
extensions: ['.js', '.jsx', '.less'],
},
plugins: [],
};
if (process.env.NODE_ENV === 'production') {
config.plugins.push(
new webpack.DefinePlugin({
'process.env.NODE_ENV': '"production"',
}),
);
} else if (process.env.NODE_ENV === 'test') {
config.plugins.push(new BundleAnalyzerPlugin());
}
module.exports = config;