Serve a Web App in Offline Mode
Learn how to make a web app available when the user is offline.
We'll cover the following...
Caching and retrieving the app shell
Perform the following steps to use the pre-cached app shell to load our app offline:
- Cache the static asset in the
installevent while online. Ensure to cache the project’s root HTML page likeindex.html. If this HTML page is not cached, other cached items like scripts and style sheets will not be used because
Ask