mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
9 lines
290 B
TypeScript
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)
|
|
})
|
|
})
|