Joaquín Sánchez Jiménez 58ceb77b06 chore: update vite-plugin-pwa
2021-03-25 18:44:16 +01:00

13 lines
309 B
TypeScript

import { UserModule } from '~/types'
export const install: UserModule = ({ isClient, router }) => {
if (isClient) {
router.isReady().then(async() => {
if (isClient) {
const { registerSW } = await import('virtual:pwa-register')
registerSW({ immediate: true })
}
})
}
}