/ next.config.ts
next.config.ts
1  import type { NextConfig } from "next";
2  
3  const nextConfig: NextConfig = {
4    devIndicators: false,
5  };
6  
7  export default nextConfig;
8