persona-community-5/.pnpm-store/v3/files/45/d4e141513d80b3547b320d39b090d53d4df0b3748997a7754e3acb588b5e182d1e88f396d8818821f254983cc77ea7346e76c5193c557ba0a88b535f9ecf7e
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

6 lines
221 B
Plaintext

export const isBrowser =
typeof window !== 'undefined' ||
typeof process === 'undefined' ||
(process?.platform as any) === 'browser'; // main and worker thread
export const env = isBrowser ? {} : process.env || {};