File size: 332 Bytes
100a6dd
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
#!/bin/bash
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."