Farnabaz

Results 331 comments of Farnabaz

Just wrap your condition in an array. ```vue import type { QueryBuilderParams } from '@nuxt/content/dist/runtime/types'; let query: QueryBuilderParams = { where: [{ _draft: { $eq: false } }], }; ```...

I see, thanks for clarifying. I've missed that you are using `ContentList`. Types should update to fix this.

Thanks for the PR ❤️ For now let's keep using plausible script injection instead of adding module.

There was some issue with shiki highlighter which is resolved in edge version, and soon will be released as `v2.1.0`. This issue also should resolve using edge channel, Feel free...

Could you provide a simple reproduction on [stackblits](https://stackblitz.com/github/nuxt/starter/tree/content)

@Flowko Using `"@nuxt/content/transformers` in Vue files is a bad practise, please avoid doing this Most likely there is a simple solution for your case, could you provide a reproduction in...

Instead of using transformer in Vue file, you can create a custom API in `server/api/` directory and use transformer inside that API endpoint

Why don't you merge these two api calls into single one? You can simply pass `slug` to your API and fetch your markdown, parse it and return the result

Hey @fanzeyi ProseImg in an inline element and it places inside `` tags in markdown, Having `` or other block elements inside its template will break the HTML structure. Removing...

Could you provide a simple reproduction using https://stackblitz.com/github/nuxt/starter/tree/content?