Skip to content

Commit c1dfa2a

Browse files
committed
feat(#17): manifest 파일 생성
1 parent 59924df commit c1dfa2a

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

src/app/manifest.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import type { MetadataRoute } from "next";
2+
3+
export default function manifest(): MetadataRoute.Manifest {
4+
return {
5+
name: "Timeat",
6+
short_name: "Timeat",
7+
description:
8+
"내 주변, 싸고 맛있는 할인하는 가게 없나? 타임잇에서 더 싸고, 더 맛있게!",
9+
start_url: "/",
10+
display: "standalone",
11+
background_color: "#ffffff",
12+
theme_color: "#000000",
13+
icons: [
14+
{ src: "/images/icons/pwa-192.png", sizes: "192x192", type: "image/png" },
15+
{ src: "/images/icons/pwa-512.png", sizes: "512x512", type: "image/png" },
16+
],
17+
};
18+
}

0 commit comments

Comments
 (0)