Slide 22
Slide 22 text
Manifest.json
● This is what turns your app from a web
app to a progressive web app
○ Basically a web app that behaves like a
native mobile app
● Allows users to install your app to home
screen
● Add the home screen icon
● Reference it in index.html
22
{
"name": "Atila",
"short_name": "Atila",
"start_url": "index.html",
"display": "standalone",
"icons": [{
"src":
"assets/img/favicon-bg.png",
"sizes": "512x512",
"type": "image/png"
}],
"background_color": "#194f87",
"theme_color": "#194f87"
}
Further Reading:
● Google Web Fundamentals: Add to Home Screen
● Google Web Fundamentals: Web App Manifest