Jeśli wolisz zignorować tę kontrolę, dodaj skip_preflight_check = true do pliku .env w swoim projekcie. To na stałe wyłączy tę wiadomość, ale możesz napotkać inne problemy.

// first run in terminal:
 yarn add --dev dotenv
 
// create .env file in root directory 
// then add below line in the .env file
 SKIP_PREFLIGHT_CHECK=true 
Salo Hopeless