Skip to content

Commit

Permalink
Refactor : PWA Icon 추가, manifest 설정 (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
jobkaeHenry authored Nov 13, 2023
1 parent 934c413 commit c501f22
Show file tree
Hide file tree
Showing 10 changed files with 53 additions and 15 deletions.
Binary file added client/public/images/icon-128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/images/icon-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/images/icon-152x152.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified client/public/images/icon-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified client/public/images/icon-384x384.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/images/icon-48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified client/public/images/icon-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/images/icon-72x72.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/public/images/icon-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 53 additions & 15 deletions client/public/manifest.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,65 @@
{
"theme_color": "#FFFFFF",
"background_color": "#FFFFFF",
"theme_color": "#7B1FA2",
"background_color": "#7B1FA2",
"display": "fullscreen",
"scope": "/",
"start_url": "/",
"name": "Your PWA APP NAME",
"short_name": "Your PWA APP NAME",
"name": "Tupaia",
"short_name": "투파이아",
"icons": [
{
"src": "/images/icon-192x192.png",
"src": "images/icon-48x48.png",
"sizes": "48x48",
"type": "image/png",
"purpose": "maskable any"
},
{
"src": "images/icon-72x72.png",
"sizes": "72x72",
"type": "image/png",
"purpose": "maskable any"
},
{
"src": "images/icon-96x96.png",
"sizes": "96x96",
"type": "image/png",
"purpose": "maskable any"
},
{
"src": "images/icon-128x128.png",
"sizes": "128x128",
"type": "image/png",
"purpose": "maskable any"
},
{
"src": "images/icon-144x144.png",
"sizes": "144x144",
"type": "image/png",
"purpose": "maskable any"
},
{
"src": "images/icon-152x152.png",
"sizes": "152x152",
"type": "image/png",
"purpose": "maskable any"
},
{
"src": "images/icon-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/images/icon-384x384.png",
"purpose": "maskable any"
},
{
"src": "images/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "/images/icon-512x512.png",
"type": "image/png",
"purpose": "maskable any"
},
{
"src": "images/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
"type": "image/png",
"purpose": "maskable any"
}
]
}

0 comments on commit c501f22

Please sign in to comment.