Files
triggershell/next.config.ts
T

9 lines
229 B
TypeScript
Raw Permalink Normal View History

2026-08-15 18:37:30 +02:00
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,
};
2026-08-15 18:37:30 +02:00
export default nextConfig;