Created
December 4, 2023 01:43
-
-
Save sametcn99/bee501db168dddc97fbbe7b217fe9ad2 to your computer and use it in GitHub Desktop.
sample manifest file for pwa's
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { MetadataRoute } from "next"; | |
| export default function manifest(): MetadataRoute.Manifest { | |
| return { | |
| name: "Your Website Name", | |
| short_name: "ShortName", | |
| dir: "auto", | |
| description: "This is your website description.", | |
| categories: ["test", "sample", "webapp", "pwa"], | |
| theme_color: "#000000", | |
| background_color: "#ffffff", | |
| display: "standalone", | |
| scope: "/", | |
| lang: "en-US", | |
| launch_handler: { | |
| url: "https://www.yourwebsite.com/", | |
| }, | |
| start_url: "/", | |
| orientation: "portrait", | |
| icons: [ | |
| { | |
| src: "/favicon.png", | |
| sizes: "192x192", | |
| type: "image/png", | |
| purpose: "any", | |
| }, | |
| { | |
| src: "/favicon.png", | |
| sizes: "192x192", | |
| type: "image/png", | |
| purpose: "maskable", | |
| }, | |
| { | |
| src: "/thumbnail.png", | |
| sizes: "512x512", | |
| type: "image/png", | |
| purpose: "any", | |
| }, | |
| ], | |
| }; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "Your Website Name", | |
| "short_name": "ShortName", | |
| "dir": "auto", | |
| "description": "This is your website description.", | |
| "categories": ["test", "sample", "webapp", "pwa"], | |
| "theme_color": "#000000", | |
| "background_color": "#ffffff", | |
| "display": "standalone", | |
| "scope": "/", | |
| "lang": "en-US", | |
| "launch_handler": { | |
| "url": "https://www.yourwebsite.com/" | |
| }, | |
| "start_url": "/", | |
| "orientation": "portrait", | |
| "icons": [ | |
| { | |
| "src": "/favicon.png", | |
| "sizes": "192x192", | |
| "type": "image/png", | |
| "purpose": "any" | |
| }, | |
| { | |
| "src": "/favicon.png", | |
| "sizes": "192x192", | |
| "type": "image/png", | |
| "purpose": "maskable" | |
| }, | |
| { | |
| "src": "/thumbnail.png", | |
| "sizes": "512x512", | |
| "type": "image/png", | |
| "purpose": "any" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment