Files
hurasoft_nextjs/next.config.ts

8 lines
131 B
TypeScript
Raw Permalink Normal View History

2025-03-14 15:58:39 +07:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2025-03-21 08:49:15 +07:00
reactStrictMode: false,
2025-03-14 15:58:39 +07:00
};
export default nextConfig;