Astro.locals is not serializable
LocalsNotSerializable: The information stored in
Astro.localsfor the path ”HREF” is not serializable. Make sure you store only serializable data. (E03034)
무엇이 잘못되었나요?
섹션 제목: 무엇이 잘못되었나요?사용자가 locals에 직렬화할 수 없는 항목을 저장하려고 하면 개발 모드에서 발생합니다.
예시:
import {defineMiddleware} from "astro/middleware";export const onRequest = defineMiddleware((context, next) => { context.locals = { foo() { alert("Hello world!") } }; return next();});