Next.js MetadataRoute.Manifest types only accept single-value purpose fields, not space-separated combinations like "any maskable". Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
35 lines
768 B
TypeScript
35 lines
768 B
TypeScript
import type { MetadataRoute } from "next";
|
|
|
|
export default function manifest(): MetadataRoute.Manifest {
|
|
return {
|
|
name: "Multica",
|
|
short_name: "Multica",
|
|
description: "Distributed AI agent framework",
|
|
id: "/",
|
|
scope: "/",
|
|
start_url: "/",
|
|
display: "standalone",
|
|
orientation: "any",
|
|
background_color: "#09090b",
|
|
theme_color: "#09090b",
|
|
icons: [
|
|
{
|
|
src: "/icon-192x192.png",
|
|
sizes: "192x192",
|
|
type: "image/png",
|
|
},
|
|
{
|
|
src: "/icon-512x512.png",
|
|
sizes: "512x512",
|
|
type: "image/png",
|
|
purpose: "any",
|
|
},
|
|
{
|
|
src: "/icon-512x512.png",
|
|
sizes: "512x512",
|
|
type: "image/png",
|
|
purpose: "maskable",
|
|
},
|
|
],
|
|
};
|
|
}
|