컨텐츠로 건너뛰기

Cannot use Astro.rewrite after the request body has been read

RewriteWithBodyUsed: Astro.rewrite() cannot be used if the request body has already been read. If you need to read the body, first clone the request.

요청 본문을 이미 읽은 경우 Astro.rewrite()를 사용할 수 없습니다. 본문을 읽어야 하는 경우 먼저 요청을 복제하세요. 예시는 다음과 같습니다.

const data = await Astro.request.clone().formData();
Astro.rewrite("/target")

더 보기: