11 lines
179 B
TypeScript
11 lines
179 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
reactCompiler: false,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|