Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow disabling Strict mode in app #41894

Merged
14 changes: 11 additions & 3 deletions packages/next/client/app-index.tsx
Expand Up @@ -2,7 +2,7 @@
import '../build/polyfills/polyfill-module'
// @ts-ignore react-dom/client exists when using React 18
import ReactDOMClient from 'react-dom/client'
import React, { use } from 'react'
import React, { ReactNode, use } from 'react'
import { createFromReadableStream } from 'next/dist/compiled/react-server-dom-webpack/client'

import measureWebVitals from './performance-relayer'
Expand Down Expand Up @@ -149,6 +149,14 @@ function ServerRoot({ cacheKey }: { cacheKey: string }): JSX.Element {
return root
}

function StrictModeIfEnabled({ children }: { children: React.ReactNode }) {
return process.env.__NEXT_STRICT_MODE ? (
<React.StrictMode>{children}</React.StrictMode>
) : (
<>{children}</>
)
}

function Root({ children }: React.PropsWithChildren<{}>): React.ReactElement {
React.useEffect(() => {
measureWebVitals()
Expand Down Expand Up @@ -213,7 +221,7 @@ export function hydrate() {
}

const reactEl = (
<React.StrictMode>
<StrictModeIfEnabled>
timneutkens marked this conversation as resolved.
Show resolved Hide resolved
<HeadManagerContext.Provider
value={{
appDir: true,
Expand All @@ -223,7 +231,7 @@ export function hydrate() {
<RSCComponent />
</Root>
</HeadManagerContext.Provider>
</React.StrictMode>
</StrictModeIfEnabled>
)

const isError = document.documentElement.id === '__next_error__'
Expand Down