-
Notifications
You must be signed in to change notification settings - Fork 5
/
webpack.config.js
89 lines (76 loc) · 2.2 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
89
const path = require('path');
const webpack = require('webpack');
const CleanWebpackPlugin = require('clean-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ProgressBarPlugin = require('progress-bar-webpack-plugin');
const isProd = process.argv.includes('production');
const isDev = !isProd;
const ENV = isProd ? 'production' : 'development';
const DEV_PORT = '8080';
const srcFolder = path.resolve(__dirname, 'src');
const outFolder = path.resolve(__dirname, 'demo');
module.exports = function() {
console.log(`Building for ${ENV}...`);
/* ----- PLUGINS ----- */
const plugins = [
new HtmlWebpackPlugin({
template: 'src/index.html',
hash: true,
inject: 'body',
favicon: 'src/assets/img/favicon.ico',
}),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify(ENV),
}),
new webpack.NamedModulesPlugin(),
new ProgressBarPlugin(),
];
// if (isDev) {
// plugins.push(new webpack.HotModuleReplacementPlugin());
// }
if (isProd) {
plugins.unshift(new CleanWebpackPlugin(['demo'])); // clear folder first!
}
/* ----- ENTRY ----- */
const entry = ['babel-polyfill'];
if (isDev) {
entry.push('react-hot-loader/patch');
entry.push(`webpack-dev-server/client?http://localhost:${DEV_PORT}`);
entry.push('webpack/hot/dev-server'); // or 'webpack/hot/only-dev-server' to reload on success only
}
entry.push(path.join(srcFolder, 'index.js'));
/* ----- FINAL CONFIG ----- */
return {
devtool: isDev ? 'eval-source-map' : 'source-map',
mode: isDev ? 'development' : 'production',
entry: entry,
output: {
filename: 'bundle.js',
path: outFolder,
pathinfo: isDev,
publicPath: '',
},
resolve: {
modules: [path.resolve('./src'), 'node_modules'],
extensions: ['.js', '.jsx'],
},
plugins: plugins,
module: {
rules: [
{
test: /\.(js|jsx)$/,
loader: 'babel-loader',
exclude: /node_modules/,
include: srcFolder,
},
],
},
devServer: {
contentBase: outFolder,
historyApiFallback: true,
hot: true,
hotOnly: true,
stats: 'minimal',
},
};
};