NEXTJS_MISSING_REACT_STRICT_MODE
Applications using Next.js should enable React Strict ModeConformance is available on Enterprise plans
We strongly suggest you enable Strict Mode in your Next.js application to better prepare your application for the future of React. See the Next.js doc on React Strict Mode for more information.
Add the following to your next.config.js
file.
next.config.js
module.exports = {
reactStrictMode: true,
}
Last updated on March 4, 2025
Was this helpful?