// src/pages/api/posts.json.ts export async function GET() { const posts = [ { id: 1, title: 'First Post' }, { id: 2, title: 'Second Post' }, { id: 3, title: 'Third Post' }, ]; return new Response(JSON.stringify(posts), { headers: { 'Content-Type': 'application/json' }, }); }