Joaquín Sánchez

Results 1398 comments of Joaquín Sánchez

With Nuxt 3.2.2 and Nitro 2.2.2, it only works with `ssr: false`: ```ts ssr: false, nitro: { devProxy: { '/api/': { target: 'http://localhost:8080/api/', prependPath: true, }, }, }, ```

You need to prerender `workbox navigateFallback`, by default /, check nuxt config file in the playground

> Prod is now working just fine, is there any way I can also precache the css in dev mode? no, `devOptions` only for webmanifest and custom sw debugging, caching...

@jetlej @suchorski the issue is about web push notifications? If so, you need for example https://dev.to/wteja/how-to-make-push-notification-using-nodejs-and-service-worker-jaa (you need the push service in your backend) You can check a sw example...

> Not web push notifications. Native mobile notifications on iOS and Android. Some link to the specs?

@jetlej check elk.zone, you need to add psuh notification to your backend

@Timtendo12 The plugin in dev will intercept only the entry point as you can see in your last screenshot, about the errors from background.js module you should check what's happening....

https://vite-pwa-org.netlify.app/frameworks/nuxt.html#registering-web-manifest

add those routes to the `workbox.navigateFallbackDenylist` array

I still need to review `dist-verify` script...