From b9b34d33db39497405f3f63952b1e507d1a5e264 Mon Sep 17 00:00:00 2001 From: Khaleel Al-Adhami Date: Fri, 31 Jan 2025 15:11:00 -0800 Subject: [PATCH] disable react strict mode --- reflex/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflex/config.py b/reflex/config.py index f6992f8b5..113af12e2 100644 --- a/reflex/config.py +++ b/reflex/config.py @@ -663,7 +663,7 @@ class Config(Base): next_compression: bool = True # Whether to use React strict mode in nextJS - react_strict_mode: bool = True + react_strict_mode: bool = False # Additional frontend packages to install. frontend_packages: List[str] = []