CJ_Clippy 287321bb1e
Some checks failed
ci / build (push) Has been cancelled
differentiate services vs packages
2024-07-27 16:42:09 -08:00

11 lines
239 B
TypeScript

import { NextResponse } from 'next/server'
export async function GET() {
const res = await fetch('https://dummyjson.com/posts', {
next: { revalidate: 60 },
});
const data = await res.json();
return NextResponse.json(data);
}