Skip to content

Commit

Permalink
chore: test on wf
Browse files Browse the repository at this point in the history
  • Loading branch information
tatomyr committed Nov 9, 2023
1 parent 3f13cb9 commit b2f2408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/env.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const isBrowser =
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
typeof window !== 'undefined' || typeof self !== 'undefined' || typeof process === 'undefined'; // main and worker thread
typeof window !== 'undefined' || typeof process === 'undefined'; // main and worker thread
export const env = isBrowser ? {} : process.env || {};

0 comments on commit b2f2408

Please sign in to comment.