9 lines
183 B
TypeScript
9 lines
183 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
// Avoid from rendering twice in development mode
|
|
reactStrictMode: false,
|
|
};
|
|
|
|
export default nextConfig;
|