-
Conrad Zelck authored
Source: https://www.freecodecamp.org/news/build-a-pwa-from-scratch-with-html-css-and-javascript Inludes pwa caching. Signed-off-by:
Conrad Zelck <git@simpel.cc>
Conrad Zelck authoredSource: https://www.freecodecamp.org/news/build-a-pwa-from-scratch-with-html-css-and-javascript Inludes pwa caching. Signed-off-by:
Conrad Zelck <git@simpel.cc>
app.js 316 B
if ("serviceWorker" in navigator) {
window.addEventListener("load", function () {
navigator.serviceWorker
.register("serviceWorker.min.js")
.then(res => console.log("service worker registered"))
.catch(err => console.log("service worker not registered", err))
})
}