Astro.clientAddress is not available in static mode.
StaticClientAddressNotAvailable:
Astro.clientAddress
is only available when usingoutput: 'server'
oroutput: 'hybrid'
. Update your Astro config if you need SSR features.
무엇이 잘못되었나요?
섹션 제목: 무엇이 잘못되었나요?Astro.clientAddress
속성은 서버 측 렌더링이 활성화된 경우에만 사용할 수 있습니다.
정적 모드에서 사용자의 IP 주소를 얻으려면 클라이언트 측 스크립트에서 Ipify와 같은 다양한 API를 사용하거나 호스팅 공급자에서 호스팅되는 서버리스 기능을 사용하여 사용자의 IP를 얻을 수 있습니다.
더 보기:
Error Reference