feat: pwa support

This commit is contained in:
JOYCEQL
2024-12-05 21:25:38 +08:00
committed by qingchen
parent 107bc2fdb1
commit 580af9d51d
2 changed files with 20 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

+20
View File
@@ -0,0 +1,20 @@
import type { MetadataRoute } from "next";
export default function manifest(): MetadataRoute.Manifest {
return {
name: "Magic Resume",
short_name: "Magic Resume",
description: "A Progressive Web App built with Next.js",
start_url: "/",
display: "standalone",
background_color: "#ffffff",
theme_color: "#000000",
icons: [
{
src: "/icon.png",
sizes: "512x512",
type: "image/png"
}
]
};
}