-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
38 lines (37 loc) · 864 Bytes
/
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
import { VitePWA } from "vite-plugin-pwa";
export default {
plugins: [
VitePWA({
manifest: {
name: "Shelem",
short_name: "Shelem",
description: "A scoreboard for your shelem game.",
theme_color: "#fcf0c0",
icons: [
{
src: "logo.svg",
sizes: "192x192",
type: "image/svg+xml",
},
{
src: "logo-maskable-192.png",
sizes: "192x192",
type: "image/png",
purpose: "maskable",
},
{
src: "logo.svg",
sizes: "512x512",
type: "image/svg+xml",
},
{
src: "logo-maskable-512.png",
sizes: "512x512",
type: "image/png",
purpose: "maskable",
},
],
},
}),
],
};