8 lines
131 B
TypeScript
8 lines
131 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: false,
|
|
};
|
|
|
|
export default nextConfig;
|