Daniel Roe
Daniel Roe
Thanks for your work on this! However, I'd suggest that we focus on making sure that this example is in the pinia docs instead. Might also be worth adding some...
The original reproduction now longer gives this error, when wrapping ``: ```diff + + ``` See https://codesandbox.io/s/immutable-fast-kv6yh0
If you are experiencing this, would you provide a stackblitz reproduction so we can look into it? 🙏
I think the icon layout shift is due to how color mode icon is implemented - it flickers to three dots and back: 
You're right, returning the string directly will work, and is a good workaround. But our intent is that `navigateTo` should work also, and be more semantic. Would you raise a...
Would you try the [edge channel](https://v3.nuxtjs.org/guide/going-further/edge-channel/) first? We've pushed a few fixes on this. And if that doesn't resolve it, would you provide a reproduction? 🙏
would you raise an issue on https://github.com/vueuse/head ? 🙏
I haven't looked into this, but it might be fixed by https://github.com/nuxt/framework/pull/5763.
I wonder if this is linked to https://github.com/nuxt/nuxt.js/issues/14325.
You can make any custom configuration changes to webpack config with the `webpack:config` hook: ```js nuxt.hook('webpack:config', (configs) => { for (const config of configs) { // set config.resolve.fallback options }...