mirror of
https://github.com/ArthurDanjou/artapi.git
synced 2026-01-15 00:29:27 +01:00
8 lines
177 B
TypeScript
8 lines
177 B
TypeScript
export default defineEventHandler(async (event) => {
|
|
const result = await queryCollection(event, 'projects')
|
|
.where('extension', '=', 'md')
|
|
.all()
|
|
|
|
return result
|
|
})
|