From 072cb16a202efde536ffa57d56be6350a627f115 Mon Sep 17 00:00:00 2001 From: Brandon Bayer Date: Thu, 29 Apr 2021 18:18:05 -0400 Subject: [PATCH] another update --- app/pages/docs/blitz-config.mdx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/app/pages/docs/blitz-config.mdx b/app/pages/docs/blitz-config.mdx index b1dc6573..0c74d163 100644 --- a/app/pages/docs/blitz-config.mdx +++ b/app/pages/docs/blitz-config.mdx @@ -380,19 +380,18 @@ module.exports = { } ``` -### React Mode {#react-mode} +### React Root Mode {#react-mode} By default Blitz uses [React Concurrent Mode](https://reactjs.org/docs/concurrent-mode-intro.html). -You can disable it by changing `experimental.reactMode` to `legacy`. +You can disable it by changing `experimental.reactRoot` to `false`. -- Default: `concurrent` -- Options: `concurrent` | `legacy` +- Default: `true` ```js module.exports = { experimental: { - reactMode: "legacy", + reactRoot: false, }, } ```