Skip to content

Instantly share code, notes, and snippets.

@stevejay
Created January 9, 2023 06:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stevejay/19cd1419bbd060d4a5a856ebcdc9c14c to your computer and use it in GitHub Desktop.
Save stevejay/19cd1419bbd060d4a5a856ebcdc9c14c to your computer and use it in GitHub Desktop.
// From https://github.com/pmndrs/react-spring/blob/6b7d67210c4bf33d7cf3ceeda3d5803ba8dd6588/packages/shared/src/helpers.ts#L95
export const isSSR = () =>
typeof window === 'undefined' ||
!window.navigator ||
/ServerSideRendering|^Deno\//.test(window.navigator.userAgent)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment