add Progressive Web App
This commit is contained in:
committed by
Pete Matsyburka
parent
eb53af12c4
commit
fa74ee1755
Binary file not shown.
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 11 KiB |
@@ -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))
|
||||
})
|
||||
Reference in New Issue
Block a user