mirror of
https://github.com/ArthurDanjou/artmcp.git
synced 2026-01-14 16:24:22 +01:00
11 lines
271 B
TypeScript
11 lines
271 B
TypeScript
import { queryCollection } from '@nuxt/content/server'
|
|
|
|
export default defineCachedEventHandler(async (event) => {
|
|
return await queryCollection(event, 'profile')
|
|
.where('extension', '=', 'json')
|
|
.first()
|
|
}, {
|
|
name: 'profile-info',
|
|
maxAge: 3600 // 1 hour
|
|
})
|