컨텐츠로 건너뛰기

Invalid type returned by Astro page.

Route returned a RETURNED_VALUE. Only a Response can be returned from Astro files.

Response의 인스턴스만 Astro 파일에서 반환될 수 있습니다.

pages/login.astro
---
return new Response(null, {
status: 404,
statusText: 'Not found'
});
// 리디렉션의 경우 Astro.redirect가 Response 인스턴스를 반환합니다.
return Astro.redirect('/login');
---

더 보기: