add Progressive Web App

This commit is contained in:
Alex Turchyn
2025-02-01 21:55:47 +02:00
committed by Pete Matsyburka
parent eb53af12c4
commit fa74ee1755
7 changed files with 48 additions and 0 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 11 KiB

+11
View File
@@ -0,0 +1,11 @@
self.addEventListener('install', () => {
console.log('DocuSeal App installed')
})
self.addEventListener('activate', () => {
console.log('DocuSeal App activated')
})
self.addEventListener('fetch', (event) => {
event.respondWith(fetch(event.request))
})