Files
sistem-desa-mandiri/src/app/manifest.ts
amel bc0f27a4fc upd: web push
Deskripsi:
- install package
- table database
- nb : masih blm bisa

No Issues
2024-09-18 11:48:57 +08:00

30 lines
610 B
TypeScript

import type { MetadataRoute } from "next";
export default function manifest(): MetadataRoute.Manifest {
return {
name: "Sistem Desa Mandiri",
short_name: "SDM",
description: "Sistem Desa Mandiri",
start_url: "/",
display: "standalone",
background_color: "#ffffff",
theme_color: "#000000",
icons: [
{
src: "/icon-192x192.png",
sizes: "192x192",
type: "image/png"
},
{
src: "/icon-512x512.png",
sizes: "512x512",
type: "image/png"
}
],
serviceworker: {
src: "/wibu_worker.js"
},
};
}