23 lines
509 B
TypeScript
23 lines
509 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export default function manifest(): MetadataRoute.Manifest {
|
|
return {
|
|
name: "CF Demop App",
|
|
short_name: "CF Demop App",
|
|
description: "Bekijk artikelen uit SAP Business One.",
|
|
start_url: "/",
|
|
display: "standalone",
|
|
background_color: "#f8fafc",
|
|
theme_color: "#0e7490",
|
|
lang: "nl",
|
|
icons: [
|
|
{
|
|
src: "/icon.svg",
|
|
sizes: "any",
|
|
type: "image/svg+xml",
|
|
purpose: "maskable",
|
|
},
|
|
],
|
|
};
|
|
}
|