Law expert

Results 7 comments of Law expert

Maybe it's a bug in dev-mode. I get rid of the warnings with moving `.nuxt/dev-sw-dist`-files to the `public`-folder.

This folder is created on `yarn dev` or whatever `dev` you use, but not right away. You will not see the folder popping up before you open the browser:) I...

Hey, programmers! I got the same ts-2352 error about `AppConfig`in `Icon & IconCSS`. ## Reproduce the error It's very easy to reproduce this error. Just init a fresh nuxt-app and...

Oh, yes, maybe! I'm certainly using `vue-tsc` and have set it to `true`. Anyway, I had to make an `app.config`-file, to add other constants there, so I'm comfortable with also...

https://dummyjson.com/* This first line is not a urlPattern. Here is something that work for me { urlPattern: ({ url, sameOrigin }) => sameOrigin && url.pathname.match(/^\/(api|article)\/.*/i), handler: 'NetworkFirst' as const, options:...

Hey again! I'm a amateur, but have worked a lot to get the caching to work.[^1] I have made two reproduction-repos: 1. [nuxt3-pwa-offline](https://github.com/lovkyndig/nuxt3-pwa-offline) 2. [nuxt-content-pwa](https://github.com/lovkyndig/nuxt-content-pwa) The first isn't a good...

Hei @dextersiah Thanks for asking a amateur! Yes, you have to use `runtimeCaching` to cache anything in the `content`-folder. In my case: ``` { urlPattern: ({ url, sameOrigin }) =>...