@echo off REM Flutter Web Development Server with Hot Reload echo Starting Flutter Web in Debug Mode with Hot Reload... echo Press 'r' to hot reload, 'R' to hot restart, 'q' to quit echo. REM Kill any existing flutter processes taskkill /F /IM dart.exe 2>nul REM Run Flutter in debug mode on a specific port with hot reload enabled flutter run -d chrome --web-port 8081 --web-hostname 0.0.0.0 --dart-define=Dart2jsOptimization=O0