From 30694c6a966073de0226ce89cfce7ffaf535d7a6 Mon Sep 17 00:00:00 2001 From: Lendemor Date: Mon, 13 Jan 2025 19:30:17 +0100 Subject: [PATCH] bump nextJS to v15 --- reflex/constants/installer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reflex/constants/installer.py b/reflex/constants/installer.py index 0b45586dd..b15b6e6e8 100644 --- a/reflex/constants/installer.py +++ b/reflex/constants/installer.py @@ -170,7 +170,7 @@ class PackageJson(SimpleNamespace): class Commands(SimpleNamespace): """The commands to define in package.json.""" - DEV = "next dev" + DEV = "next dev --turbopack" EXPORT = "next build" EXPORT_SITEMAP = "next build && next-sitemap" PROD = "next start" @@ -182,7 +182,7 @@ class PackageJson(SimpleNamespace): "@emotion/react": "11.13.3", "axios": "1.7.7", "json5": "2.2.3", - "next": "14.2.16", + "next": "15.1.4", "next-sitemap": "4.2.3", "next-themes": "0.4.3", "react": "18.3.1",