diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/runtime/modules.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/runtime/modules.md b/docs/runtime/modules.md index 42f2a08e6..9b8f083d1 100644 --- a/docs/runtime/modules.md +++ b/docs/runtime/modules.md @@ -108,8 +108,7 @@ Once it finds the `foo` package, Bun reads the `package.json` to determine how t "worker": "./index.js", "module": "./index.js", "node": "./index.js", - "default": "./index.js", - "browser": "./index.js" // lowest priority + "default": "./index.js", // lowest priority } } ``` |