19 lines
419 B
Batchfile
19 lines
419 B
Batchfile
@echo off
|
|
echo Installing Missing Dependencies for Phase 3.1
|
|
echo =============================================
|
|
echo.
|
|
|
|
cd frontend
|
|
echo Installing @heroicons/react...
|
|
npm install @heroicons/react
|
|
|
|
echo.
|
|
echo =============================================
|
|
echo Installation Complete!
|
|
echo.
|
|
echo Now restart your frontend:
|
|
echo 1. Stop the frontend (Ctrl+C in the terminal)
|
|
echo 2. Run: start-frontend.bat
|
|
echo.
|
|
pause
|