2026-08-15 18:37:30 +02:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
2026-08-15 20:45:46 +02:00
|
|
|
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;
|