diff options
Diffstat (limited to 'src/js/_codegen/client-js.ts')
-rw-r--r-- | src/js/_codegen/client-js.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/_codegen/client-js.ts b/src/js/_codegen/client-js.ts index 849240c1f..2db3305fa 100644 --- a/src/js/_codegen/client-js.ts +++ b/src/js/_codegen/client-js.ts @@ -15,7 +15,7 @@ let $debug_log_enabled = ((env) => ( .split(/[-_./]/g) .join("_") .toUpperCase()}) -))(@Bun.env); +))(Bun.env); let $debug_log = $debug_log_enabled ? (...args) => { // warn goes to stderr without colorizing console.warn(Bun.enableANSIColors ? '\\x1b[90m[${publicName}]\\x1b[0m' : '[${publicName}]', ...args); |