saus icon indicating copy to clipboard operation
saus copied to clipboard

Add process.server and process.client

Open aleclarson opened this issue 3 years ago • 0 comments

if (process.server) {
  // Do something on server-side only.
}

if (process.client) {
  // Do something in web browser only.
}

(inspired by Nuxt)

aleclarson avatar Sep 01 '22 03:09 aleclarson