Add manifest.json for PWA

This commit is contained in:
ekzyis 2023-11-24 01:23:22 +01:00
parent 2952d4a99b
commit 9ae92c84ba
5 changed files with 34 additions and 0 deletions

View File

@ -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

29
vue/public/manifest.json Normal file
View File

@ -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"
}
]
}