From 28f9d6cf4f90a4c778b312cdcdef863cede9050c Mon Sep 17 00:00:00 2001 From: Lendemor Date: Fri, 25 Oct 2024 23:18:48 +0200 Subject: [PATCH] add turbo for dev command --- 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 e1caeabed..7809f5da0 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" + DEV = "next dev --turbo" EXPORT = "next build" EXPORT_SITEMAP = "next build && next-sitemap" PROD = "next start"