Files
no-whatever/src/app/manifest.ts
T

33 lines
775 B
TypeScript

import type { MetadataRoute } from "next";
export default function manifest(): MetadataRoute.Manifest {
return {
name: "NoWhatever — 别说随便",
short_name: "NoWhatever",
description: "像 Tinder 一样滑卡片,和朋友一起决定去哪吃!",
start_url: "/",
display: "standalone",
background_color: "#030712",
theme_color: "#10b981",
orientation: "portrait",
icons: [
{
src: "/icon-192x192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "/icon-512x512.png",
sizes: "512x512",
type: "image/png",
},
{
src: "/icon-512x512.png",
sizes: "512x512",
type: "image/png",
purpose: "maskable",
},
],
};
}