From e43ae0504d678367d8ac9773765b01759a15ff63 Mon Sep 17 00:00:00 2001 From: Aaron Date: Wed, 16 Apr 2025 08:09:33 -0500 Subject: [PATCH] docs: Add filenames to startup examples --- docs/guide/essentials/config/browser-startup.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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, });