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
This commit is contained in:
Vadella, Anna
2026-03-18 16:51:56 -04:00
parent 08e5739638
commit 300e5dec16

View File

@@ -2,12 +2,12 @@
"name": "frontend", "name": "frontend",
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev --webpack",
"build": "next build", "build": "next build",
"start": "next start", "start": "next start",
"lint": "eslint" "lint": "eslint"
}, },
"dependencies": { "dependencies": {
"next": "16.2.0", "next": "16.2.0",
"react": "19.2.4", "react": "19.2.4",