isServer

isServer

1
const isServer: boolean;

This indicates that the code is being run as the server or browser bundle. As the underlying runtimes export this as a constant boolean it allows bundlers to eliminate the code and their used imports from the respective bundles.

1
2
3
4
5
if (isServer) {
  // I will never make it to the browser bundle
} else {
  // won't be run on the server;
}

Комментарии