Files
pse.dev/app/api/articles/route.ts
Kalidou Diagne 0621817de1 feat: blog page redesign (#372)
* feat: blog page redesign
2025-05-03 23:13:47 +01:00

35 lines
947 B
TypeScript

import { NextRequest, NextResponse } from "next/server"
import { getArticles } from "@/lib/blog"
// Cache control
export const revalidate = 60 // Revalidate cache after 60 seconds
export const dynamic = "force-dynamic" // Ensure the route is always evaluated
export async function GET(request: NextRequest) {
const { searchParams } = new URL(request.url)
const tag = searchParams.get("tag") || undefined
const limit = searchParams.get("limit")
? parseInt(searchParams.get("limit") as string, 10)
: undefined
const project = searchParams.get("project") || undefined
try {
const articles = getArticles({
tag,
limit,
project,
})
return NextResponse.json({
articles,
success: true,
})
} catch (error) {
console.error("Error fetching articles:", error)
return NextResponse.json(
{ error: "Failed to fetch articles", success: false },
{ status: 500 }
)
}
}