Daniel Roe
Daniel Roe
see https://github.com/nuxt/bridge/pull/469
In old format plugins with $config from context it still dont work on client. On server its there but on client its not which breaks a lot of modules that...
Currently the vite implementation in Bridge diverges somewhat from within Nuxt 3. This is a problem for a couple of different reasons. 1. it increases the maintenance burden and doubles...
reference: https://github.com/nuxt-community/tailwindcss-module/issues/432#issuecomment-1044828239
### Version [v0.5.11](https://github.com/http/releases/tag/v0.5.11) ### Reproduction link https://github.com/danielroe/nuxt-ie-http See also [browser support statement in `ky` README](https://github.com/sindresorhus/ky#browser-support) ### Steps to reproduce Although Nuxt polyfills `unfetch` in IE, `ky` uses an implementation of...
## Background On SSR if an unregistered component is used we have a hard crash as we try to cache the details about this component, but it's a string (not...
### Vue version 3.2.37 ### Link to minimal reproduction https://github.com/danielroe/vue3-pre-window-repro ### Steps to reproduce 1. `git clone https://github.com/danielroe/vue3-pre-window-repro` on a Windows machine 2. pnpm i 3. pnpm dev 4. visit...
At the moment we can't merge classes, for example: ```js useHead({ htmlAttrs: { class: 'first-class' } }) useHead({ htmlAttrs: { class: 'second-class' } }) ``` [Sandbox](https://stackblitz.com/edit/vitejs-vite-gciqbj?file=src%2FApp.vue&terminal=dev) In this case there...
similar to https://github.com/vueuse/head/issues/32, we can deduplicate canonical links....
This line removes all link tags that aren't controlled by vueuse/head: https://github.com/vueuse/head/blob/392e8c8ca91df27d9b067dad8c2d9886b53ac756/src/index.ts#L208 If I remove that then this section does the same thing when run by vite-ssg because `querySelector('link[key="null"]')` just...