27 lines
590 B
TypeScript
27 lines
590 B
TypeScript
|
|
import type { MetadataRoute } from "next";
|
||
|
|
|
||
|
|
export default function manifest(): MetadataRoute.Manifest {
|
||
|
|
return {
|
||
|
|
name: "Konten Humas",
|
||
|
|
short_name: "PWA",
|
||
|
|
description:
|
||
|
|
"DIVISI HUMAS POLRI - Pengelola Informasi dan Dokumentasi Polri.",
|
||
|
|
start_url: "/",
|
||
|
|
display: "standalone",
|
||
|
|
background_color: "#ffffff",
|
||
|
|
theme_color: "#000000",
|
||
|
|
icons: [
|
||
|
|
{
|
||
|
|
src: "/divhumas.png",
|
||
|
|
sizes: "192x192",
|
||
|
|
type: "image/png",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
src: "/divhumas.png",
|
||
|
|
sizes: "512x512",
|
||
|
|
type: "image/png",
|
||
|
|
},
|
||
|
|
],
|
||
|
|
};
|
||
|
|
}
|