portfolio/app/api/articles/route.ts
Ryan Freeman c963803320
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m44s
Added Article navigation
2024-10-01 22:06:29 +01:00

8 lines
211 B
TypeScript

import {getAllArticles} from '@/lib/getAllArticles'
export async function GET(request: Request) {
const articles = await getAllArticles()
return new Response(JSON.stringify(articles), {status: 200})
}