Skip to content

Commit

Permalink
add : manifest ์ถ”๊ฐ€
Browse files Browse the repository at this point in the history
  • Loading branch information
HelloWook committed Dec 9, 2024
1 parent b750ac5 commit bbf69ba
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="manifest" href="/manifest.json" />
<title>Vite + React + TS</title>
</head>
<body>
Expand Down
21 changes: 21 additions & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "My PWA App",
"short_name": "PWA App",
"description": "This is my Progressive Web App!",
"theme_color": "#ffffff",
"background_color": "#ffffff",
"start_url": "/",
"display": "standalone",
"icons": [
{
"src": "icon-192x192.svg",
"sizes": "192x192",
"type": "image/svg+xml"
},
{
"src": "icon-512x512.svg",
"sizes": "512x512",
"type": "image/svg+xml"
}
]
}

0 comments on commit bbf69ba

Please sign in to comment.