Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Shorthand for IS_BUILD_MODE #2268

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Spelling fix
  • Loading branch information
mcgear committed Jan 19, 2024
commit 64e1e6c9a4aafb4032a5fd8369ab0c66ee8f4c4d
4 changes: 2 additions & 2 deletions src/server/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
* @example
* ```
* if (IS_BUILD_MODE) {
* console.log('This is code run during bulid!');
* console.log('This is code run during build!');
* } else {
* console.log('This is code run without bulid!');
* console.log('This is code run without build!');
* }
* ```
*
Expand Down
Loading