-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
executable file
·94 lines (91 loc) · 2.79 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
const path = require('path')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const WorkboxPlugin = require('workbox-webpack-plugin')
const WebpackPwaManifest = require('webpack-pwa-manifest')
module.exports = (env, argv) => {
let config = {
mode: 'development',
output: {
filename: '[name].[contenthash].js',
path: path.resolve(__dirname, 'dist'),
clean: {
keep: /^\.gitkeep$/,
},
},
plugins: [
new HtmlWebpackPlugin({
template: 'src/index.html'
}),
new WorkboxPlugin.GenerateSW({
// these options encourage the ServiceWorkers to get in there fast
// and not allow any straggling "old" SWs to hang around
clientsClaim: true,
skipWaiting: true,
maximumFileSizeToCacheInBytes: 99999999999999,
}),
new WebpackPwaManifest({
publicPath: '/',
name: 'Covid QR scanner',
short_name: 'Covid scanner',
description: 'Covid QR scanner, show information inside the DCC (digital covid certificate) QR',
background_color: '#ffffff',
theme_color: '#ffffff',
icons: [
{
src: path.resolve('src/qr.png'),
sizes: [512]
},
]
}),
],
optimization: {
runtimeChunk: 'single',
splitChunks: {
cacheGroups: {
vendor: {
test: /[\\/]node_modules[\\/]/,
name: 'vendors',
chunks: 'all',
},
},
},
},
module: {
rules: [
{
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
{
test: /\.(png|svg|jpg|jpeg|gif)$/i,
type: 'asset/resource',
},
{
test: /\.html$/i,
loader: 'html-loader',
},
],
},
devServer: {
contentBase: path.join(__dirname, 'dist'),
https: true,
host: '0.0.0.0',
compress: true,
port: 8006,
},
resolve: {
fallback: {
crypto: false,
stream: false,
fs: false,
util: false,
path: false,
assert: false,
}
},
}
if('production' === argv.mode){
config.mode = 'production'
}
return config
};