-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.common.js
119 lines (118 loc) · 3.34 KB
/
webpack.common.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
110
111
112
113
114
115
116
117
118
119
/* eslint-disable import/no-extraneous-dependencies */
// eslint-disable-next-line import/no-extraneous-dependencies
const HtmlWebpackPlugin = require('html-webpack-plugin');
// eslint-disable-next-line import/no-extraneous-dependencies
const CopyWebpackPlugin = require('copy-webpack-plugin');
// eslint-disable-next-line import/no-extraneous-dependencies
const workboxPlugin = require('workbox-webpack-plugin');
const ImageminWebpackPlugin = require('imagemin-webpack-plugin').default;
// eslint-disable-next-line import/no-extraneous-dependencies
const ImageminMozjpeg = require('imagemin-mozjpeg');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const path = require('path');
module.exports = {
entry: path.resolve(__dirname, 'src/scripts/index.js'),
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].bundle.js',
},
optimization: {
minimize: true,
splitChunks: {
chunks: 'all',
minSize: 20000,
maxSize: 0,
minChunks: 1,
maxAsyncRequests: 30,
maxInitialRequests: 30,
automaticNameDelimiter: '~',
enforceSizeThreshold: 50000,
cacheGroups: {
defaultVendors: {
test: /[\\/]node_modules[\\/]/,
priority: -10,
reuseExistingChunk: true,
},
default: {
minChunks: 2,
priority: -20,
reuseExistingChunk: true,
},
},
},
minimizer: [
new CssMinimizerPlugin(),
new UglifyJsPlugin(),
],
},
module: {
rules: [
{
test: /\.(sa|sc|c)ss$/i,
use: [
{
loader: 'style-loader',
},
{
loader: 'css-loader',
},
{
loader: 'sass-loader',
},
],
},
],
},
plugins: [
new HtmlWebpackPlugin({
template: path.resolve(__dirname, 'src/templates/index.html'),
filename: 'index.html',
}),
new CopyWebpackPlugin({
patterns: [
{
from: path.resolve(__dirname, 'src/public/'),
to: path.resolve(__dirname, 'dist/'),
},
],
}),
new workboxPlugin.GenerateSW({
swDest: 'service-worker.js',
clientsClaim: true,
skipWaiting: true,
runtimeCaching: [
{
// use network-first strategy for detail page
// because we need to get uptodate reviews
urlPattern: new RegExp('https://dicoding-restaurant-api.el.r.appspot.com/detail'),
handler: 'NetworkFirst',
},
{
// for other page, use stale-while-revalidate strategy
// because we dont need realtime data
urlPattern: new RegExp('https://dicoding-restaurant-api.el.r.appspot.com/'),
handler: 'StaleWhileRevalidate',
},
{
urlPattern: new RegExp('https://fonts.gstatic.com/'),
handler: 'StaleWhileRevalidate',
},
{
urlPattern: new RegExp('https://fonts.googleapis.com/'),
handler: 'StaleWhileRevalidate',
},
],
}),
new ImageminWebpackPlugin({
plugins: [
ImageminMozjpeg({
quality: 50,
progressive: true,
}),
],
}),
new BundleAnalyzerPlugin(),
],
};