Daniel Roe

Results 2592 comments of Daniel Roe

We may implement via https://github.com/nuxt-community/style-resources-module or directly in Nuxt. There is also the following workaround: ```js export default defineNuxtConfig({ vite: { css: { preprocessorOptions: { scss: { additionalData: '@import "@/assets/scss/global.scss";',...

I can no longer reproduce. Is this still occurring for you?

This is not a recent change. It's caused by the gap between when useHead _removes_ the title set by the old page and _sets_ the title of the new page....

Would welcome @harlan-zw's input on this one. My reading is that this is a natural gap between the unmounting of a previous component and `` resolving when the new page's...

It looks like you still have an older `@vueuse/head` dependency in your package lockfile, from `nuxt-schema-org`. Try updating your lockfile or removing that dependency. But if you can reproduce on...

@jvrsolis You should be able to set the charset with: ```js import { defineNuxtConfig } from 'nuxt' export default defineNuxtConfig({ app: { head: { charset: 'utf-8' } } }) ```...

You need to set `ssr: true` to render meta tags - there is an open issue to render _some_ tags on `ssr: false`.

@vaban-ru There are now extensive hooks that allow you to customise the rendering of your app. In your case, you would probably want to use the Nitro hook `render:html`. (You...

I'm glad it's working for you, but I would recommend instead using a `` as Nuxt will handle these automatically: https://v3.nuxtjs.org/api/components/teleports/#example-body-teleport.