This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
134 lines (131 loc) · 2.78 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
const { VueLoaderPlugin } = require("vue-loader");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const path = require("path");
const { DefinePlugin, ProvidePlugin } = require("webpack");
const { GenerateSW } = require("workbox-webpack-plugin");
module.exports = (env, argv) => {
let mode = "production";
if (argv.mode) {
mode = "development";
}
const config = {
entry: {
bookshelf: {
import: "./public/bookshelf.js",
},
read: {
import: "./public/read.js",
}
},
mode: mode,
output: {
filename: "[name].[contenthash].js",
path: path.resolve(__dirname, "./dist"),
clean: true,
publicPath: "/",
},
module: {
rules: [
{
test: /\.json/,
type: "asset/resource",
generator: {
filename: "[name][ext]",
},
},
{
test: /\.(jpg|png)$/,
type: "asset/resource",
generator: {
filename: "images/[name][ext]",
},
},
{
test: (value) => value.includes("icon-"),
type: "asset/resource",
generator: {
filename: "images/icons/[name][ext]",
},
},
{
test: /\.vue$/,
loader: "vue-loader",
},
{
test: /\.css$/,
use: ["vue-style-loader", "css-loader"],
},
{
test: /\.s[ac]ss$/i,
use: [MiniCssExtractPlugin.loader, "css-loader", "sass-loader"],
},
],
},
plugins: [
new ProvidePlugin({
JSZip: "jszip",
}),
new GenerateSW({
skipWaiting: true,
clientsClaim: true,
runtimeCaching: [
{
urlPattern: new RegExp("/api/.*"),
method: "POST",
handler: "NetworkOnly",
options: {
backgroundSync: {
name: "api-retry",
options: {
maxRetentionTime: 24 * 60,
},
},
// plugins: [statusPlugin]
},
},
{
urlPattern: new RegExp("/api/.*"),
method: "GET",
handler: "NetworkFirst",
},
],
}),
new DefinePlugin({
__VUE_OPTIONS_API__: true,
__VUE_PROD_DEVTOOLS__: false,
}),
new VueLoaderPlugin(),
new HtmlWebpackPlugin({
title: "bookshelf",
filename: "index.html",
template: "public/index.ejs",
// favicon: 'public/assets/images/favicon.ico',
meta: {
viewport: "initial-scale=1, maximum-scale=1",
},
templateParameters: {
mode: mode,
},
chunks: ['bookshelf']
}),
new HtmlWebpackPlugin({
title: "reader",
filename: "read/index.html",
template: "public/read.ejs",
// favicon: 'public/assets/images/favicon.ico',
meta: {
viewport: "initial-scale=1, maximum-scale=1",
},
templateParameters: {
mode: mode,
},
chunks: ['read']
}),
new MiniCssExtractPlugin({
filename: "[name].[contenthash].css",
}),
],
};
return config;
};