From 7daaa95ab934cc648fb437789e403d4a28eb6137 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 15 Aug 2026 20:45:46 +0200 Subject: [PATCH] Hide the Next.js dev-mode route indicator badge Sets devIndicators: false in next.config.ts. Compile/runtime error overlays are unaffected - only the floating route-info badge is hidden. Co-Authored-By: Claude Sonnet 5 --- app/next.config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/next.config.ts b/app/next.config.ts index 41a9c18..d51e7cc 100644 --- a/app/next.config.ts +++ b/app/next.config.ts @@ -1,5 +1,8 @@ import type { NextConfig } from "next"; -const nextConfig: NextConfig = {/* config options here */}; +const nextConfig: NextConfig = { + // Hides the on-screen dev-mode route indicator badge. Compile/runtime error overlays still show. + devIndicators: false, +}; export default nextConfig;