docs: Add filenames to startup examples

This commit is contained in:
Aaron
2025-04-16 08:09:33 -05:00
parent acb6cd180c
commit e43ae0504d
@@ -14,7 +14,7 @@ You can configure browser startup in 3 places:
1. `<rootDir>/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,
});