Skip to content

Commit 2fe61e6

Browse files
committedFeb 20, 2025··
fix(llms): add missing import on queryCollection
1 parent b091253 commit 2fe61e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/features/llms/runtime/server/content-llms.plugin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { onLLMsGenerate, onLLMsGenerateFull } from 'nuxt-llms/runtime'
44
import type { ContentLLMSCollectionSection } from './utils'
55
import { createDocumentGenerator, prepareContentSections } from './utils'
66
// @ts-expect-error - typecheck does not detect defineNitroPlugin in imports
7-
import { defineNitroPlugin } from '#imports'
7+
import { defineNitroPlugin, queryCollection } from '#imports'
88

99
export default defineNitroPlugin(() => {
1010
onLLMsGenerate(async (event, options) => {

0 commit comments

Comments
 (0)
Please sign in to comment.