chore: add wrangler dependency to package.json

This commit is contained in:
2025-10-03 20:32:05 +02:00
parent 22c93c509d
commit 48e6043205
32 changed files with 182 additions and 32 deletions

View File

@@ -6,7 +6,7 @@ const props = defineProps({
},
})
const { locale } = useI18n()
const { locale } = useI18n({ useScope: 'global' })
const { data: items } = await useAsyncData(`uses-${props.category}`, async () => await queryCollection('uses').where('category', '=', props.category).all())
const { data: categoryData } = await useAsyncData(`category-${props.category}`, async () => await queryCollection('usesCategories').where('slug', '=', props.category).first())