From ccfbae5b4e220d9c89a35b95d8fc51c1700ae195 Mon Sep 17 00:00:00 2001 From: Kunall Banerjee Date: Sun, 22 Jun 2025 03:42:19 -0400 Subject: [PATCH] Remove redundant config option Strict Mode is enabled by default since Next.js 13.5.1 with the `app` router. Ref: https://nextjs.org/docs/app/api-reference/config/next-config-js/reactStrictMode --- next.config.mjs | 1 - 1 file changed, 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 5647bdf..daf56ef 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -2,7 +2,6 @@ import createMDX from '@next/mdx'; /** @type {import('next').NextConfig} */ const nextConfig = { - reactStrictMode: true, pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'md', 'mdx'], };