From 3c5fb517dccb2591f6de39ad218825a7065ee4db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ullrich=20Sch=C3=A4fer?= Date: Fri, 27 Mar 2026 20:42:10 +0100 Subject: [PATCH] Add health and metrics routes to Journal route config The route files existed but weren't registered in the explicit routes.ts, so React Router never compiled them into the build. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/journal/app/routes.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/journal/app/routes.ts b/apps/journal/app/routes.ts index 1e9bb96..5195009 100644 --- a/apps/journal/app/routes.ts +++ b/apps/journal/app/routes.ts @@ -20,4 +20,6 @@ export default [ route("activities/:id", "routes/activities.$id.tsx"), route("users/:username", "routes/users.$username.tsx"), route("privacy", "routes/privacy.tsx"), + route("api/health", "routes/api.health.ts"), + route("api/metrics", "routes/api.metrics.ts"), ] satisfies RouteConfig;