fetch ()는 헤더를 보내지 않습니까? 브라우저에서 다음과 같은 POST 요청을 보내고 있습니다. fetch(serverEndpoint, { method: 'POST', mode: 'no-cors', // this is to prevent browser from sending 'OPTIONS' method request first redirect: 'follow', headers: new Headers({ 'Content-Type': 'text/plain', 'X-My-Custom-Header': 'value-v', 'Authorization': 'Bearer ' + token, }), body: companyName }) 요청이 내 백엔드에 도달 할 때까지 헤더 X-My-Custom-Header도 ..