Files
Bitcamp-2025/next.config.ts
2025-04-12 13:45:49 -04:00

9 lines
156 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
devIndicators: false
};
export default nextConfig;