Chess_Engine / web /fix-dependencies.bat
electro-sb's picture
first commit
100a6dd
@echo off
echo Fixing React dependencies for Chess UI...
npm uninstall react react-dom @types/react @types/react-dom
npm install --save react react-dom
npm install --save-dev @types/react @types/react-dom
echo Dependencies reinstalled successfully!
echo.
echo You can now run "npm run dev" to start the development server.