Making it installable
let manifest = {
name: "My Awesome PWA",
short_name: "My App",
icons: [{
src: "LINK_TO_YOUR_ICON",
sizes: "196x196",
type: "image/png",
purpose: "any"
},{
src: "LINK_TO_YOUR_ICON",
sizes: "196x196",
type: "image/png",
purpose: "maskable"
}],
start_url: "https://your.domain.com/index.html",
display: "standalone",
background_color: "#000000",
theme_color: "#4DBA87"
};
//background_color and theme_color can be customized
BF.pwaSetManifest(manifest);

Last updated
Was this helpful?