29 lines
657 B
TypeScript
29 lines
657 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export default function manifest(): MetadataRoute.Manifest {
|
|
return {
|
|
name: "Nomadro 数字游民指南",
|
|
short_name: "Nomadro",
|
|
description: "数字游民的一站式生活操作系统。",
|
|
start_url: "/zh/digital",
|
|
scope: "/",
|
|
display: "standalone",
|
|
background_color: "#ffffff",
|
|
theme_color: "#ff4d4f",
|
|
icons: [
|
|
{
|
|
src: "/globe.svg",
|
|
sizes: "any",
|
|
type: "image/svg+xml",
|
|
purpose: "any",
|
|
},
|
|
{
|
|
src: "/globe.svg",
|
|
sizes: "any",
|
|
type: "image/svg+xml",
|
|
purpose: "maskable",
|
|
},
|
|
],
|
|
};
|
|
}
|