-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
vite.config.ts
137 lines (134 loc) · 3.77 KB
/
vite.config.ts
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
135
136
137
import { ConfigEnv, defineConfig, loadEnv } from "vite";
import react from "@vitejs/plugin-react-swc";
import basicSsl from "@vitejs/plugin-basic-ssl";
import { VitePWA, VitePWAOptions } from "vite-plugin-pwa";
import eslint from "vite-plugin-eslint"
// https://vitejs.dev/config/
export default defineConfig(({mode}: ConfigEnv) => {
const env = loadEnv(mode, process.cwd(), "");
return {
plugins: [
react(),
eslint({
}),
basicSsl(),
VitePWA(getPwaOptions(env))
],
server: {
https: true,
host: true,
port: 443,
// port: parseInt(env.PORT ?? "9100", 10),
// strictPort: true,
},
build: {
outDir: "./build"
}
}
});
const getPwaOptions = (env: Record<string, string>): Partial<VitePWAOptions> => {
const mapUrlPatternFunc = `(({url}) => url.origin.includes("${env.VITE_OSM_PROVIDER_HOST}"))`;
return {
mode: "production",
base: "/",
manifest: {
short_name: "巴士預報",
name: "巴士到站預報 App",
description: "巴士預報(純享版),資料來源為「開放數據平台」 data.gov.hk",
icons: [
{
src: "favicon.ico",
sizes: "64x64 32x32 24x24 16x16",
type: "image/x-icon"
}, {
src: "img/logo128.png",
type: "image/png",
sizes: "128x128"
}, {
src: "img/logo192.png",
type: "image/png",
sizes: "192x192"
}, {
src: "img/logo512.png",
type: "image/png",
sizes: "512x512"
}
],
start_url: ".",
display: "standalone",
theme_color: "#fedb00",
background_color: "#fedb00"
},
devOptions: {
enabled: process.env.SW_DEV === "true",
type: "module",
navigateFallback: "index.html"
},
registerType: "autoUpdate",
workbox: {
globPatterns: ['**/*.{css,html,ico,png,svg}'],
runtimeCaching: [
// for lazy caching anything
// reference to https://vite-pwa-org.netlify.app/workbox/generate-sw.html#cache-external-resources
{
urlPattern: ({url}) => (
url.origin === self.location.origin && url.pathname.startsWith("/assets")
),
handler: "CacheFirst",
options: {
cacheName: "app-runtime",
cacheableResponse: {
statuses: [0, 200],
}
}
},
{
urlPattern: ({ url }) =>
url.origin === self.location.origin &&
(url.pathname.startsWith("/zh/route/") ||
url.pathname.startsWith("/en/route/")),
handler: "StaleWhileRevalidate",
options: {
cacheName: "app-runtime-public",
cacheableResponse: {
statuses: [200],
},
expiration: {
maxEntries: 50,
maxAgeSeconds: 60 * 24 * 30,
}
}
},
{
urlPattern: ({ url }) =>
url.origin === self.location.origin &&
(url.pathname.startsWith("/fonts/") || url.pathname.startsWith("/img/")),
handler: "CacheFirst",
options: {
cacheName: "font-and-asset",
cacheableResponse: {
statuses: [0, 200],
},
expiration: {
maxAgeSeconds: 60 * 24 * 365,
}
}
},
{
urlPattern: new Function('return ' + mapUrlPatternFunc)(),
handler: "CacheFirst",
options: {
cacheName: "map",
cacheableResponse: {
statuses: [200],
},
expiration: {
maxAgeSeconds: 60 * 24 * 30,
purgeOnQuotaError: true,
}
}
},
]
}
}
}