portfolio/app/api/articles/route.ts
Ryan Freeman 339d7cdcf6
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 2m42s
Added Article navigation
2024-10-01 22:00:02 +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})
}