From 300e5dec165d856b5ea922ff2865fec514ae83db Mon Sep 17 00:00:00 2001 From: "Vadella, Anna" Date: Wed, 18 Mar 2026 16:51:56 -0400 Subject: [PATCH] Switch to using Webpack instead of Turbopack Using Next.js 16.2.0 with Tailwind v4 and Turbopack currently has a known issue: Turbopack tries to resolve Tailwind from the parent directory instead of project folder --- frontend/package.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index a5872eb3b..c3aa3a4b9 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -2,12 +2,12 @@ "name": "frontend", "version": "0.1.0", "private": true, - "scripts": { - "dev": "next dev", - "build": "next build", - "start": "next start", - "lint": "eslint" - }, +"scripts": { + "dev": "next dev --webpack", + "build": "next build", + "start": "next start", + "lint": "eslint" +}, "dependencies": { "next": "16.2.0", "react": "19.2.4",