This repository was archived by the owner on Feb 28, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvite.config.js
More file actions
70 lines (68 loc) · 1.57 KB
/
Copy pathvite.config.js
File metadata and controls
70 lines (68 loc) · 1.57 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
61
62
63
64
65
66
67
68
69
70
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { VitePWA } from "vite-plugin-pwa";
const manifestForPlugin = {
registerType: "autoUpdate",
includeAssets: [
"logo.png",
"favicon-16x16.png",
"favicon-32x32.png",
"maskable_iconx192.png",
"maskable_icon_x48.ico",
"maskable_iconx384.png",
"maskable_iconx512.png",
"maskable_icon.png",
],
manifest: {
name: "Maintenance Ping Pipeline",
short_name: "Maintenance",
description: "Efficient application for reporting and tracking maintenance issues",
icons: [
{
src: "/logo.png",
sizes: "512x512",
type: "image/png",
},
{
src: "/favicon-16x16.png",
sizes: "16x16",
type: "image/png",
},
{
src: "/favicon-32x32.png",
sizes: "32x32",
type: "image/png",
},
{
src: "/maskable_icon_x48.ico",
sizes: "48x48",
type: "image/png",
purpose: "maskable",
},
{
src: "/maskable_icon_x192.png",
sizes: "192x192",
type: "image/png",
purpose: "maskable",
},
{
src: "/maskable_icon_x512.png",
sizes: "512x512",
type: "image/png",
purpose: "any maskable",
},
],
theme_color: "#005a9e",
background_color: "#f4f6f8",
display: "standalone",
scope: "/",
start_url: "/",
orientation: "portrait",
},
devOptions: {
enabled: true,
},
};
export default defineConfig({
plugins: [react(), VitePWA(manifestForPlugin)],
});