-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
61 lines (57 loc) · 1.59 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
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { VitePWA } from "vite-plugin-pwa";
import million from "million/compiler";
import svgr from "vite-plugin-svgr";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
million.vite({ auto: true }),
svgr(),
react(),
VitePWA({
registerType: "prompt",
includeAssets: [
"favicon.png",
"maskable_icon.png",
"maskable_icon_x192.png",
"maskable_icon_x512.png",
"spyke.png",
"spyke.svg",
],
workbox: {
cleanupOutdatedCaches: true,
// by default, the ServiceWorker precaches a total of 2MB of assets,
// so raising it slightly to accommodate all the built assets.
// DO NOT make it absurdly high, as it will cause the ServiceWorker to take
// a long time to install, and will block the page from loading until it's done.
maximumFileSizeToCacheInBytes: 2621440,
},
manifest: {
name: "Spyke",
short_name: "Spyke",
start_url: ".",
display: "standalone",
theme_color: "#ffffff",
background_color: "#171717",
icons: [
{
src: "maskable_icon_x192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "maskable_icon_x512.png",
sizes: "512x512",
type: "image/png",
},
{
src: "spyke.svg",
sizes: "150x150",
type: "image/svg",
},
],
},
}),
],
});