David Stack
David Stack
I'm also not using SSR (ssr: false in Nuxt config) and get this SSR related warning. Ideally, if no SSR is being used, there wouldn't be any warning related to...
You can try adding this to your `package.json`: ```json "overrides": { "vue": "latest" } ```
Adding this to my `package.json` stopped this error: ```json "overrides": { "vue": "latest" } ```
I'm in the same boat. I'm using `@sanity/image-url` for images instead of this module's image functionality - mainly because of the hotspot issue.
@rylanharper Thanks for sharing! I'm using Nuxt 3 as well, but will wait for `@nuxt/image` to hit v1. Already bookmarked your comment for future reference :)
If you want to return all the types (default maps behavior) just use `types=""`.
As of [`v4.6.1`](https://github.com/firebase/firebaseui-web/releases/tag/v4.6.1), you can customize the button labels: ``` signInOptions: [ { provider: firebase.auth.GoogleAuthProvider.PROVIDER_ID, fullLabel: "Sign up with Google" }, ``` What I ended up doing was having separate...
Especially some info about how to handle the SAFETY errors. Right now I'm just filtering for the word `SAFETY` in the error response to handle that case as a warning....
I noticed this slowdown too. In particular, the [nuxt-seo](https://github.com/harlan-zw/nuxt-seo) module (I'm using v2.0.0-rc.10) dramatically slows dev server startup down (even with `OgImage` disabled). cc @harlan-zw PS I'm using Windows.
@harlan-zw I tried disabling the splash and these are the numbers I got, very similar to what I was getting without disabling the splash.  After making the following changes...