-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.ts
More file actions
60 lines (59 loc) · 1.31 KB
/
vite.config.ts
File metadata and controls
60 lines (59 loc) · 1.31 KB
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
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { VitePWA } from "vite-plugin-pwa";
const manifestData = {
name: "ReactBase",
short_name: "ReactBase",
start_url: "/",
version: "0.0.1",
display: "standalone",
background_color: "#000000",
lang: "en",
scope: "/",
icons: [
{
src: "assets/images/icons/icon-36.png",
sizes: "36x36",
type: "image/png",
},
{
src: "assets/images/icons/icon-48.png",
sizes: "48x48",
type: "image/png",
},
{
src: "assets/images/icons/icon-72.png",
sizes: "72x72",
type: "image/png",
},
{
src: "assets/images/icons/icon-96.png",
sizes: "96x96",
type: "image/png",
},
{
src: "assets/images/icons/icon-144.png",
sizes: "144x144",
type: "image/png",
},
{
src: "assets/images/icons/icon-168.png",
sizes: "168x168",
type: "image/png",
},
{
src: "assets/images/icons/icon-192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "assets/images/icons/icon-256.png",
sizes: "256x256",
type: "image/png",
},
],
};
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), VitePWA({ registerType: "autoUpdate", manifest: manifestData})],
});