Spaces:
Running
Running
iOS Web Push support: PWA manifest + apple icons/meta + iOS add-to-home-screen guide banner
Browse files- manifest.json +32 -0
manifest.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "VIDRAFT — Pre-AGI Model Development",
|
| 3 |
+
"short_name": "VIDRAFT",
|
| 4 |
+
"description": "비드래프트 새 소식 · Darwin 모델 · 연구 성과 알림",
|
| 5 |
+
"start_url": "/?utm_source=pwa",
|
| 6 |
+
"scope": "/",
|
| 7 |
+
"display": "standalone",
|
| 8 |
+
"orientation": "portrait",
|
| 9 |
+
"background_color": "#ffffff",
|
| 10 |
+
"theme_color": "#4338CA",
|
| 11 |
+
"lang": "ko",
|
| 12 |
+
"icons": [
|
| 13 |
+
{
|
| 14 |
+
"src": "/icon-192.png",
|
| 15 |
+
"sizes": "192x192",
|
| 16 |
+
"type": "image/png",
|
| 17 |
+
"purpose": "any"
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"src": "/icon-512.png",
|
| 21 |
+
"sizes": "512x512",
|
| 22 |
+
"type": "image/png",
|
| 23 |
+
"purpose": "any"
|
| 24 |
+
},
|
| 25 |
+
{
|
| 26 |
+
"src": "/icon-512.png",
|
| 27 |
+
"sizes": "512x512",
|
| 28 |
+
"type": "image/png",
|
| 29 |
+
"purpose": "maskable"
|
| 30 |
+
}
|
| 31 |
+
]
|
| 32 |
+
}
|