diff --git a/apps/editor/app/api/health/route.ts b/apps/editor/app/api/health/route.ts index 300230ba..d83b90eb 100644 --- a/apps/editor/app/api/health/route.ts +++ b/apps/editor/app/api/health/route.ts @@ -1,3 +1,5 @@ +export const dynamic = 'force-static' + export function GET() { return Response.json({ status: 'ok', app: 'editor', timestamp: new Date().toISOString() }) } diff --git a/apps/editor/app/layout.tsx b/apps/editor/app/layout.tsx index 33db7f78..140a1580 100644 --- a/apps/editor/app/layout.tsx +++ b/apps/editor/app/layout.tsx @@ -35,11 +35,6 @@ export default function RootLayout({ {process.env.NODE_ENV === 'development' && ( <> -