summaryrefslogtreecommitdiff
path: root/src/scripts/main.js
diff options
context:
space:
mode:
authoraltaf-creator <64111012+altaf-creator@users.noreply.github.com>2023-05-04 19:17:15 +0700
committeraltaf-creator <64111012+altaf-creator@users.noreply.github.com>2023-05-04 19:17:15 +0700
commit1651ce848ac03ee867473d361c200ea863aef83f (patch)
tree9760791f47b61081e3dad3846c41f71b30f5fef2 /src/scripts/main.js
parent33c9622149c786a8d1c78b2da7dde5ca84c49529 (diff)
PWA Update - attempt 1
Diffstat (limited to 'src/scripts/main.js')
-rw-r--r--src/scripts/main.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/scripts/main.js b/src/scripts/main.js
new file mode 100644
index 0000000..e4efee0
--- /dev/null
+++ b/src/scripts/main.js
@@ -0,0 +1,9 @@
+if ("serviceWorker" in navigator) {
+ window.addEventListener("load", function () {
+
+ navigator.serviceWorker
+ .register("scripts/service-worker.js")
+ .then(res => console.log("service worker registered"))
+ .catch(err => console.log("service worker not registered", err))
+ })
+} \ No newline at end of file