summaryrefslogtreecommitdiffstats
path: root/public/service-worker.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/service-worker.js')
-rw-r--r--public/service-worker.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/public/service-worker.js b/public/service-worker.js
new file mode 100644
index 0000000..55afd7e
--- /dev/null
+++ b/public/service-worker.js
@@ -0,0 +1,20 @@
+// Since we migrated to Vite, the service worker strategy changed, in CRA it was a custom service worker named service-worker.js and in Vite its sw.js handled by vite-plugin-pwa
+// Due to this the existing CRA users were not able to migrate to Vite or any new changes post Vite unless browser is hard refreshed
+// Hence adding a self destroying worker so all CRA service workers are destroyed and migrated to Vite
+// We should remove this code after sometime when we are confident that
+// all users have migrated to Vite
+
+self.addEventListener("install", () => {
+ self.skipWaiting();
+});
+
+self.addEventListener("activate", () => {
+ self.registration
+ .unregister()
+ .then(() => {
+ return self.clients.matchAll();
+ })
+ .then((clients) => {
+ clients.forEach((client) => client.navigate(client.url));
+ });
+});