fix: add Node >= 20 engine requirement to frontend package.json

Tailwind CSS v4.2 (@tailwindcss/oxide) requires Node >= 20 for native
bindings. Without this, `npm install` succeeds but `vite` fails at
runtime with a missing native binding error.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
ANarayan
2026-03-28 18:51:37 -07:00
co-authored by Claude Opus 4.6
parent 9ab2d37c82
commit bbcda62ed4
2 changed files with 615 additions and 671 deletions
+612 -671
View File
File diff suppressed because it is too large Load Diff
+3
View File
@@ -3,6 +3,9 @@
"private": true,
"version": "0.1.0",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",