Skip to content

Commit

Permalink
fix: manifast fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eun-hak committed Jun 3, 2024
1 parent d10d929 commit df0218a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
"description": "My awesome Progressive Web App!",
"icons": [
{
"src": "/Logo256.png",
"src": "/icons/Logo256.png",
"sizes": "256x256",
"type": "image/png"
},
{
"src": "/Logo512.png",
"src": "/icons/Logo512.png",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "/Logo1024.png",
"src": "/icons/Logo1024.png",
"sizes": "1024x1024",
"type": "image/png"
}
Expand Down
4 changes: 3 additions & 1 deletion src/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ import { Html, Head, Main, NextScript } from 'next/document';
export default function Document() {
return (
<Html lang="ko">
<Head />
<Head>
<link rel="manifest" href="/manifest.json" />
</Head>
<body>
<Main />
<NextScript />
Expand Down

0 comments on commit df0218a

Please sign in to comment.