-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
109 lines (97 loc) · 3.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
const HtmlWebpackPlugin = require('html-webpack-plugin');
const webpack = require('webpack');
const fs = require('fs');
const path = require('path');
const { version } = require('./package.json');
const NODE_ENV = process.env.NODE_ENV || 'development';
const isDevelopment = NODE_ENV === 'development';
const checkDir = dir => !fs.existsSync(dir) && fs.mkdirSync(dir);
const createFolders = folders =>
folders.forEach(folder => checkDir(path.resolve(__dirname, folder)));
const unlinkFiles = folders =>
folders.forEach((p) => {
fs.readdirSync(path.resolve(__dirname, p)).forEach((f) => {
if (f === '.gitkeep') return;
fs.unlinkSync(`${p}/${f}`);
});
});
const build = async () => {
createFolders(['public', 'public/build', 'public/build/js']);
unlinkFiles(['public/build/js']);
const plugins = [
/**
* Dev plugins
*/
isDevelopment && new webpack.NamedModulesPlugin(),
/**
* Common plugins
*/
new webpack.DefinePlugin({
'process.env': {
BROWSER: JSON.stringify(true),
DEV: isDevelopment,
},
}),
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'src/template/index.html',
}),
].filter(x => x !== false);
const entry = ['@babel/polyfill', './src/index.jsx'];
const config = {
devServer: {
historyApiFallback: true,
hot: true,
},
devtool: isDevelopment ? 'inline-source-map' : false,
entry,
module: {
rules: [
{
exclude: /node_modules/,
loader: 'babel-loader',
test: /\.(js|jsx)$/,
},
{
loader: 'file-loader?name=[path][name].[ext]',
test: /\.(ttf|otf|eot|woff(2)?)(\?[a-z0-9]+)?$/,
},
{
loader: 'file-loader?name=[path][name].[ext]',
test: /\.(png)?$/,
},
{
loader: 'svg-inline-loader',
test: /\.svg$/,
},
],
},
optimization: {
minimize: !isDevelopment,
splitChunks: {
cacheGroups: {
vendor: {
chunks: 'all',
name: 'vendors',
test: /[\\/]node_modules[\\/]/,
},
},
},
},
output: {
chunkFilename: 'build/js/[name].[chunkhash].js',
filename: `build/js/bundle${isDevelopment ? '' : `.v.${version}`}.js`,
path: path.resolve(__dirname, 'public/'),
publicPath: '/',
},
plugins,
resolve: {
alias: {
'react-dom': isDevelopment ? '@hot-loader/react-dom' : 'react-dom',
},
extensions: ['.js', '.jsx', '.json'],
},
};
return config;
};
module.exports = build();