Joaquín Sánchez

Results 1398 comments of Joaquín Sánchez

Create a minimal reproduction using `@vite-pwa/create-pwa`, I'll try to check it later... Check https://vite-pwa-org.netlify.app/guide/scaffolding.html : select Vue and then Nuxt when selecting the framework

If you want to redirect to custom page (`pages/offline.vue`), you need to prerender the route, otherwise you will get infinite redirection when offline. In the runtime caching just redirect to...

@tamanna-makkar check https://github.com/vite-pwa/vite-plugin-pwa/discussions/734

@reslear can you provide the svg or a minimal reproduction?

I guess the problem maybe is here https://github.com/iconify/iconify/blob/439a862a1a0f0679038a0272bf06a9f277a50756/packages/utils/src/loader/modern.ts#L68C17-L68C29 I'm not sure since css w/h seems the svg icon w/h (I need to do some tests) /cc @cyberalien you changed only...

@cyberalien does this icon https://www.svgviewer.dev/s/ottD7T7J follow iconify json convention?, if I just change the svg to use `viewBox="0 0 24 25"` removing width and height attributes it just works: ![imagen](https://github.com/user-attachments/assets/384c7c8f-9d64-41f7-9d85-27f39f164b41)

I guess we will need to add this https://github.com/iconify/iconify/blob/439a862a1a0f0679038a0272bf06a9f277a50756/packages/utils/src/loader/modern.ts#L42 here https://github.com/iconify/iconify/blob/439a862a1a0f0679038a0272bf06a9f277a50756/packages/utils/src/loader/custom.ts#L63

Try replacing `/\/api\/.*$/` with `/^\/api\//` adding it to `workbox.navigateFallbackDenylist` regex array: you need to exclude sw precaching handler to intercept any `/api/` request. You can also add internal plugins to...