Files
RFP_Finanzen/src/app/manifest.ts
T
Jan 3e5ac7730d
CI / Build and Deploy (push) Successful in 2m59s
Web Push Zustand und Deep Links stabilisieren
2026-05-06 21:13:54 +02:00

35 lines
786 B
TypeScript

import type { MetadataRoute } from "next";
export default function manifest(): MetadataRoute.Manifest {
return {
name: "RFP Finanz\u00fcbersicht",
short_name: "RFP Finanzen",
description: "Budgetfreigaben und Finanzstatus f\u00fcr Vereins-AGs.",
id: "/",
start_url: "/",
scope: "/",
display: "standalone",
background_color: "#F5F1E8",
theme_color: "#3B5AE0",
icons: [
{
src: "/icon-192.png",
sizes: "192x192",
type: "image/png",
purpose: "maskable"
},
{
src: "/icon-512.png",
sizes: "512x512",
type: "image/png",
purpose: "maskable"
},
{
src: "/apple-touch-icon.png",
sizes: "180x180",
type: "image/png"
}
]
};
}