import type { MetadataRoute } from "next"; export default function manifest(): MetadataRoute.Manifest { return { name: "Next_Edu - K12 智慧教务系统", short_name: "NextEdu", description: "Enterprise Grade K12 Education Management System", start_url: "/", display: "standalone", // eslint-disable-next-line no-restricted-syntax -- PWA manifest requires literal hex background_color: "#ffffff", // eslint-disable-next-line no-restricted-syntax -- PWA manifest requires literal hex theme_color: "#1976d2", orientation: "any", icons: [ { src: "/icon.svg", sizes: "any", type: "image/svg+xml", }, ], }; }