mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-03 04:06:06 +02:00
🔨 Make web app capable (#743)
This commit is contained in:
parent
19b6a421db
commit
c1c46a2f6c
2 changed files with 23 additions and 0 deletions
21
apps/web/public/manifest.json
Normal file
21
apps/web/public/manifest.json
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"short_name": "Rallly",
|
||||||
|
"name": "Rallly",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "android-chrome-192x192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "android-chrome-512x512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"start_url": "/",
|
||||||
|
"scope": "/",
|
||||||
|
"display": "standalone",
|
||||||
|
"background_color": "#F3F4F6",
|
||||||
|
"theme_color": "#4F46E5"
|
||||||
|
}
|
|
@ -75,6 +75,8 @@ export default function Document() {
|
||||||
href="/favicon-128x128.png"
|
href="/favicon-128x128.png"
|
||||||
sizes="128x128"
|
sizes="128x128"
|
||||||
/>
|
/>
|
||||||
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||||
|
<link rel="manifest" href="/manifest.json" />
|
||||||
<meta name="robots" content="noindex,nofollow" />
|
<meta name="robots" content="noindex,nofollow" />
|
||||||
<meta name="application-name" content="Rallly" />
|
<meta name="application-name" content="Rallly" />
|
||||||
<meta name="msapplication-TileColor" content="#FFFFFF" />
|
<meta name="msapplication-TileColor" content="#FFFFFF" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue