• Blog

  • Snippets

isServer

December 21, 2023

isServer

isServer

declare const global: unknown;
export function isServer() {
return typeof window === 'undefined' && typeof global !== 'undefined';
}

서버사이드 환경(SSR)에서만 실행되는 로직을 작성할 때 사용하면 됨



서버사이드 환경에서 실행되는 로직을 만들고 싶을때
밑에있는 코드처럼 조건문을 작성해주고 안에서 로직을 작성하면 됨

if(isServer()) {
// 서버사이드 환경일때만 실행되는게 보장됨
}