Dawit

Results 10 comments of Dawit

I was experiencing this issue using the Vercel + Supabase combination, and it was resolved just by changing the port from `6543` to `5432` in my `DATABASE_URL` environment variable. It's...

I noticed there are also links to unpublished pages under the "Upcoming & In Progress" section. What do you have in mind for this?

I think it has to do with a dependency of the module (`sharp`). You have to approve its build to use it. I'm using `pnpm`, so I uninstalled and reinstalled...

You can put your Markdown inside `/content/docs`. That way it maps to `/docs`. In the Docus code base, the route is configured using [the `content.config.ts` file](https://github.com/nuxt-content/docus/blob/main/layer/content.config.ts) as with any Nuxt...

@larbish I'm not the one who opened the issue but I’m curious. Does creating a content config in the consuming app override all the original config of Docus or merge...

Hi @dosstx, Nuxt isn't technically acquired by Vercel. It's still an independent community project. I'm sure more features will be added soon to this template. There is a draft PR...

Does your `icon.customCollections` value resolve to an array? From the docs, it looks like it expects an array of icons. ```ts export default defineNuxtConfig({ modules: [ '@nuxt/icon' ], icon: {...

I couldn't find such a component internally within the `@nuxt/icon` package, but the error messages suggest that it's being treating it as the default `Icon` component. ```vue ``` What's even...