Add manifest.json for PWA
This commit is contained in:
parent
2952d4a99b
commit
9ae92c84ba
|
@ -8,6 +8,11 @@
|
|||
<link rel="icon" href="/favicon.ico">
|
||||
<script type="module" src="/src/main.js"></script>
|
||||
<title>delphi.market</title>
|
||||
<link rel="manifest" href="/manifest.json">
|
||||
<meta name="theme-color" content="#8787a4">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 80 KiB |
Binary file not shown.
After Width: | Height: | Size: 449 KiB |
Binary file not shown.
After Width: | Height: | Size: 91 KiB |
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"short_name": "dm",
|
||||
"name": "Delphi Market",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/android-chrome-192x192.png",
|
||||
"type": "image/jpeg",
|
||||
"sizes": "192x192"
|
||||
},
|
||||
{
|
||||
"src": "/android-chrome-512x512.png",
|
||||
"type": "image/jpeg",
|
||||
"sizes": "512x512"
|
||||
}
|
||||
],
|
||||
"background_color": "#091833",
|
||||
"display": "standalone",
|
||||
"scope": "/",
|
||||
"theme_color": "#8787a4",
|
||||
"description": "Prediction Market on Lightning",
|
||||
"screenshots": [
|
||||
{
|
||||
"src": "/app_screenshot_001.png",
|
||||
"type": "image/png",
|
||||
"sizes": "750x1334",
|
||||
"form_factor": "narrow"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue