Files
triggershell/app/next.config.ts
T
valknarandClaude Sonnet 5 7daaa95ab9 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 <noreply@anthropic.com>
2026-08-15 20:45:46 +02:00

9 lines
229 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Hides the on-screen dev-mode route indicator badge. Compile/runtime error overlays still show.
devIndicators: false,
};
export default nextConfig;