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