-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
PWA support #3229
Copy link
Copy link
Closed
Labels
enhancementNew feature or requestNew feature or requeststaleNo activity for more than 30 daysNo activity for more than 30 days
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requeststaleNo activity for more than 30 daysNo activity for more than 30 days
Type
Fields
Give feedbackNo fields configured for issues without a type.
Please make sure of the following things
Description of the feature / 需求描述
For list content pages, adding PWA support is more suitable for fast and easy access on mobile and desktop to improve the operating experience; additionally, the web app can be launched in full screen or standalone mode for a more native experience.
Suggested solution / 实现思路
Refer to Mozilla development documentation, just add
<head>block toindex.html, and you need to configure the *.webmanifestfile to personalize the PWA.{ "name": "Alist Progressive Web App", "short_name": "AlistPWA", "description": "Progressive Web App for alist.", "icons": [ { "src": "icons/icon-32.png", "sizes": "32x32", "type": "image/png" }, // ... { "src": "icons/icon-512.png", "sizes": "512x512", "type": "image/png" } ], "start_url": "/index.html", "display": "fullscreen", "theme_color": "#B12A34", "background_color": "#B12A34" }Additional context / 附件
No response