Joaquín Sánchez
Joaquín Sánchez
> We should add test case from #6039 that timeouts without this fix. Added a test in the `test/browser` folder: rn we cannot test the timeout since we need to...
Use vuetify loader: https://github.com/vuetifyjs/vuetify-loader/tree/master I mean, this PR will not be merged: you have a vite and webpack plugin to load components on demand. For nuxt you can use the...
try adding `nuxt-module-build prepare && ` to the `prepack` script: `"prepack": "nuxt-module-build prepare && nuxt-module-build build",`
I'm going to file an issue in the starter template and send the corresponding PR.
minimal reproduction please 🙏 , with that info I cannot do anything: provide the framework you're using, the login and home pages (if using some "router", the logic)...
arggg, sorry this is nuxt integration 🤦 , yeah, you need to exclude any ssr page or api call using navigateFallbackDenylist (regex array iirc)
you can still use SSR app, you only need to prerender the fallback for offline, you can use `navigateFallbackAllowlist` including only the fallback, for example `/`, this way any ssr...
it should work, the offline sw handler won't intercept any SSR page, when offline, you will have the default browser offline page when navigating to any ssr page
You need to add a new you-are-offline page (call it as you want, this will replace the default browser offline page), prerender it (will be in sw precache manifest), include...
Yeah, I was adding the link to it, with workbox option you have some limitations, using a custom sw can help you, it is a middleware between the browser and...