mirror of
https://github.com/docusealco/docuseal.git
synced 2026-08-07 07:14:43 +00:00
12 lines
260 B
JavaScript
12 lines
260 B
JavaScript
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))
|
|
})
|