CORS (Cross-Origin Resource Sharing) =" 다른 도메인에서 우리 서버로 요청을 보낼 수 있게 허용하는 정책" Origin(출처)이란?Orign = Protocol + Domain + Porthttpls://localhost:3000(플러터 앱)http://localhost:8080(우리 Spring Boot 서버)-> 서로 다른 Origin! 왜 CORS 문제가 발생할까요?시나리오 : React 앱에서 우리 API호출플러터 앱(localhost:3000)에서 아래 주소로 요청 실행fetch('http://localhost:8080/api/boards') .then(response => response.json()) .then(data => console.log(..