diff --git a/docs/guide/essentials/config/browser-startup.md b/docs/guide/essentials/config/browser-startup.md index e5b5778d..f845d2de 100644 --- a/docs/guide/essentials/config/browser-startup.md +++ b/docs/guide/essentials/config/browser-startup.md @@ -14,7 +14,7 @@ You can configure browser startup in 3 places: 1. `/web-ext.config.ts`: Ignored from version control, this file lets you configure your own options for a specific project without affecting other developers - ```ts + ```ts [web-ext.config.ts] import { defineWebExtConfig } from 'wxt'; export default defineWebExtConfig({ @@ -31,7 +31,7 @@ You can configure browser startup in 3 places: To set or customize the browser opened during development: -```ts +```ts [web-ext.config.ts] export default defineWebExtConfig({ binaries: { chrome: '/path/to/chrome-beta', // Use Chrome Beta instead of regular Chrome @@ -81,7 +81,7 @@ You can use any directory you'd like for `--user-data-dir`, the examples above c If you prefer to load the extension into your browser manually, you can disable the auto-open behavior: -```ts +```ts [web-ext.config.ts] export default defineWebExtConfig({ disabled: true, });