Files
ui/docs/server/plugins/llms.ts
2025-06-24 12:11:23 +02:00

9 lines
290 B
TypeScript

import type { H3Event } from 'h3'
import type { PageCollectionItemBase } from '@nuxt/content'
export default defineNitroPlugin((nitroApp) => {
nitroApp.hooks.hook('content:llms:generate:document', async (_: H3Event, doc: PageCollectionItemBase) => {
transformMDC(doc as any)
})
})