forked from nornagon/cdda-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
75 lines (74 loc) · 2.06 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
import { defineConfig } from "vite";
import { svelte } from "@sveltejs/vite-plugin-svelte";
import { VitePWA } from "vite-plugin-pwa";
import EnvironmentPlugin from "vite-plugin-environment";
// https://vitejs.dev/config/
export default defineConfig({
base: "/",
build: {
sourcemap: true,
},
server: {
port: 3000,
},
plugins: [
EnvironmentPlugin({
GITHUB_SHA: null,
SENTRY_DSN: null,
}),
svelte(),
VitePWA({
devOptions: {
enabled: true,
},
includeAssets: ["favicon.png"],
manifest: {
short_name: "Cataclysm Guide",
name: "The Hitchhiker's Guide to the Cataclysm",
icons: [
{
src: "icon-192.png",
type: "image/png",
sizes: "192x192",
},
{
src: "icon-512.png",
type: "image/png",
sizes: "512x512",
},
],
start_url: "./",
theme_color: "#202020",
background_color: "#1c1c1c",
display: "standalone",
},
workbox: {
globPatterns: ["**/*.{js,css,html,png}"],
navigateFallback: "index.html",
runtimeCaching: [
{
// latest/all.json updates regularly, so try the network first.
urlPattern:
/^https:\/\/cddaraw\.doiiars\.com\/.*\/latest\/all\.json$/,
handler: "NetworkFirst",
},
{
// the other all.json files are the same forever, so if we have
// them from the cache they are fine.
urlPattern:
/^https:\/\/cddaraw\.doiiars\.com\/.*\/all\.json$/,
handler: "CacheFirst",
},
{
// Use saved translations if possible, update in the background.
urlPattern: /^https:\/\/cds.svc.transifex.net\//,
handler: "StaleWhileRevalidate",
},
],
// Without this, a stale service worker can be alive for a long time,
// and get out of date with the server.
skipWaiting: true,
},
}),
],
});