-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
102 lines (90 loc) · 2.42 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
const path = require('path')
const webpack = require('webpack')
// Plugins
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer')
.BundleAnalyzerPlugin
const CopyWebpackPlugin = require('copy-webpack-plugin')
const ZipPlugin = require('zip-webpack-plugin')
module.exports = function(env, argv) {
const mode = argv.mode || 'development'
console.info('running webpack with mode:', mode)
// Plugins
const plugins = [
new webpack.DefinePlugin({
IS_DEV_MODE: mode === 'development',
}),
// Remove unnecessary module getter calls in webpack
// new webpack.optimize.ModuleConcatenationPlugin(),
// Analyze the bundle
new BundleAnalyzerPlugin({
// Generate static report file
analyzerMode: 'static',
// Do not open analyzer result in browser
openAnalyzer: false,
// Show gzip size by default. Close to user experience
defaultSizes: 'gzip',
// HTML report location
reportFilename: './reports/bundleAnalyzer/bundleStats.html',
// Generate stats json file
generateStatsFile: true,
// JSON stats location
statsFilename: './reports/bundleAnalyzer/bundleStats.json',
}),
// Copy the index.html to the public folder
new CopyWebpackPlugin([
{
from: './src/index.html',
to: './index.html',
},
]),
]
if (mode === 'production') {
plugins.push(
new ZipPlugin({
// path: '',
filename: 'main.zip',
})
)
}
return {
mode: mode,
entry: {
main: './src/main.js',
},
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'public'),
},
resolve: {
extensions: ['.ts', '.tsx', '.js'],
},
// Use eval-source-map to get faster rebuild sourcemap
// devtool: mode === 'production' ? undefined : 'inline-source-map',
devtool: mode === 'production' ? undefined : 'inline-source-map',
devServer: {
contentBase: './public',
},
module: {
rules: [
{
test: /\.js$/,
use: {
loader: 'babel-loader',
options: {
presets: [['@babel/preset-env', { modules: false }]],
},
},
exclude: /node_modules/,
},
{
test: /\.(png|svg|jpg|gif)$/,
use: {
loader: 'file-loader',
},
exclude: /node_modules/,
},
],
},
plugins: plugins,
}
}