- Unify API: lib/api.ts uses /api/v1, inbox uses /api/inbox (rewrites) - Remove localhost refs: openapi, inbox page - Add rewrites: /api/inbox|tmc -> inbox-server, /api/v1 -> FastAPI - Add stub routes: knowledge/insights, recommendations, search, log-error - Transfer from PAPA: prompts (inspection, tmc), scripts, supabase, data/tmc-requests - Fix inbox-server: ORDER BY created_at, package.json - Remove redundant app/api/inbox/files route (rewrites handle it) - knowledge/ in gitignore (large PDFs) Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
362 B
TypeScript
12 lines
362 B
TypeScript
import { NextResponse } from 'next/server';
|
|
export const dynamic = 'force-dynamic';
|
|
export async function POST(req: Request) {
|
|
try {
|
|
const body = await req.json();
|
|
console.error('[CLIENT ERROR]', JSON.stringify(body, null, 2));
|
|
return NextResponse.json({ ok: true });
|
|
} catch {
|
|
return NextResponse.json({ ok: false }, { status: 400 });
|
|
}
|
|
}
|