From d75af3a1d79c4c1de6f1062206f3bf4594034dbc Mon Sep 17 00:00:00 2001 From: Lendemor Date: Fri, 25 Oct 2024 23:56:00 +0200 Subject: [PATCH] remove turbo flag --- reflex/constants/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reflex/constants/installer.py b/reflex/constants/installer.py index 7809f5da0..e1caeabed 100644 --- a/reflex/constants/installer.py +++ b/reflex/constants/installer.py @@ -165,7 +165,7 @@ class PackageJson(SimpleNamespace): class Commands(SimpleNamespace): """The commands to define in package.json.""" - DEV = "next dev --turbo" + DEV = "next dev" EXPORT = "next build" EXPORT_SITEMAP = "next build && next-sitemap" PROD = "next start"