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;