WIP PWA for Grain
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: add PWA manifest

+23
+2
public/icons/.gitkeep
··· 1 + # Placeholder for PWA icons 2 + # Add icon-192.png and icon-512.png
+21
public/manifest.json
··· 1 + { 2 + "name": "Grain", 3 + "short_name": "Grain", 4 + "description": "Photo galleries for the AT Protocol", 5 + "start_url": "/", 6 + "display": "standalone", 7 + "background_color": "#000000", 8 + "theme_color": "#000000", 9 + "icons": [ 10 + { 11 + "src": "/icons/icon-192.png", 12 + "sizes": "192x192", 13 + "type": "image/png" 14 + }, 15 + { 16 + "src": "/icons/icon-512.png", 17 + "sizes": "512x512", 18 + "type": "image/png" 19 + } 20 + ] 21 + }