Skip to content

Instantly share code, notes, and snippets.

@sametcn99
Created December 4, 2023 01:43
Show Gist options
  • Select an option

  • Save sametcn99/bee501db168dddc97fbbe7b217fe9ad2 to your computer and use it in GitHub Desktop.

Select an option

Save sametcn99/bee501db168dddc97fbbe7b217fe9ad2 to your computer and use it in GitHub Desktop.
sample manifest file for pwa's
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",
},
],
};
}
{
"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