From 103862890dd60f8e6a6ca7d3e38b80a051bc49bd Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Thu, 30 Jan 2025 21:26:35 +0000 Subject: [PATCH] fix: remove turbopack flag from next dev command Removes the experimental --turbopack flag from the next dev command to ensure stable development environment and avoid potential issues with experimental features. --- examples/nextjs/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json index 0164bc87..0f017b52 100644 --- a/examples/nextjs/package.json +++ b/examples/nextjs/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "scripts": { - "dev": "bun -b next dev --turbopack", + "dev": "bun -b next dev", "build": "bun -b next build", "start": "bun -b next start", "prepare": "ts-patch install && typia patch"