Spaces:
Paused
Paused
Create manifest.json
Browse files- static/chatui/manifest.json +24 -0
static/chatui/manifest.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"background_color": "#ffffff",
|
| 3 |
+
"name": "Chat UI",
|
| 4 |
+
"short_name": "Chat UI",
|
| 5 |
+
"display": "standalone",
|
| 6 |
+
"start_url": "/",
|
| 7 |
+
"icons": [
|
| 8 |
+
{
|
| 9 |
+
"src": "/chatui/icon-128x128.png",
|
| 10 |
+
"sizes": "128x128",
|
| 11 |
+
"type": "image/png"
|
| 12 |
+
},
|
| 13 |
+
{
|
| 14 |
+
"src": "/chatui/icon-256x256.png",
|
| 15 |
+
"sizes": "256x256",
|
| 16 |
+
"type": "image/png"
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"src": "/chatui/icon-512x512.png",
|
| 20 |
+
"sizes": "512x512",
|
| 21 |
+
"type": "image/png"
|
| 22 |
+
}
|
| 23 |
+
]
|
| 24 |
+
}
|