2026-04-17 13:40:35 +08:00

33 lines
875 B
TypeScript

import type { MetadataRoute } from "next";
export default function manifest(): MetadataRoute.Manifest {
return {
name: "安智伴 - 家人连线台",
short_name: "安智伴 - 家人连线台",
description: "随时了解长辈的近况,查看留言、使用动态,给长辈写问候。",
start_url: "/",
display: "standalone",
background_color: "#f6eee1",
theme_color: "#35548d",
lang: "zh-CN",
categories: ["utilities", "lifestyle", "health"],
icons: [
{
src: "/pwa/icon-192x192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "/pwa/icon-512x512.png",
sizes: "512x512",
type: "image/png",
},
{
src: "/pwa/icon-maskable-512x512.png",
sizes: "512x512",
type: "image/png",
purpose: "maskable",
},
],
};
}