#Facing nuxt issue with GCS

1 messages · Page 1 of 1 (latest)

tawdry trenchBOT
#

Hi @umbral drum. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:

#

I'd be happy to help with your Nuxt Content issue! However, your message is a bit vague. Could you provide more details about the specific problem you're encountering? For example:

  • What error message are you seeing?
  • What version of Nuxt and @nuxt/content are you using?
  • What have you already tried?

In the meantime, here are a couple of common Nuxt Content-related things to be aware of:

Module order matters

If you're using Nuxt UI alongside Nuxt Content, make sure @nuxt/content is registered after @nuxt/ui in your nuxt.config.ts, otherwise prose components won't be available: [Nuxt UI Content Integration]

export default defineNuxtConfig({
  modules: [
    '@nuxt/ui',
    '@nuxt/content' // must come after @nuxt/ui
  ],
  css: ['~/assets/css/main.css']
})

Basic setup

To enable Nuxt Content, install the module and add it to your config: [Nuxt Content Docs]

npx nuxt module add content

Please share more details about your specific issue (error logs, config, etc.) so I can give you a more targeted answer!

Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:

#

@umbral drum Kapa.ai is still learning and improving, please let me know how I did by reacting below.