From d690504943fd95140557306b92ba7dac0ce8d691 Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Tue, 23 Apr 2024 14:26:21 -0700 Subject: [PATCH] Update define-constant.md --- docs/guides/runtime/define-constant.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/guides/runtime/define-constant.md b/docs/guides/runtime/define-constant.md index a07548bca7..6c08257fb5 100644 --- a/docs/guides/runtime/define-constant.md +++ b/docs/guides/runtime/define-constant.md @@ -51,6 +51,8 @@ if (true) { And finally, Bun detects the `else` branch is not reachable, and eliminates it. +--- + ```ts console.log("Production mode"); ``` @@ -63,6 +65,8 @@ Values can be strings, identifiers, properties, or JSON. To make all usages of `window` be `undefined`, you can use the following command. +--- + ```sh bun --define window="undefined" src/index.ts ```