March 2018
Beginner to intermediate
344 pages
7h 7m
English
You may have seen the benefits of applications that use a web app manifest already—if you've ever been on a website that asks you to install this on your home screen or if you've noticed that the color of the address bar change from default gray to a different color on Android Chrome, that's a progressive app.
Let's head over to static/manifest.json and investigate the contents:
{ "name": "vue-pwa", "short_name": "vue-pwa", "icons": [ { "src": "/static/img/icons/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, { "src": "/static/img/icons/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } ], "start_url": "/index.html", "display": "standalone", "background_color": "#000000", ...Read now
Unlock full access