feat: enable isolated mode by default for better session isolation
Some checks failed
CI / lint (push) Has been cancelled
CI / test (macos-latest) (push) Has been cancelled
CI / test (ubuntu-latest) (push) Has been cancelled
CI / test (windows-latest) (push) Has been cancelled
CI / test_docker (push) Has been cancelled

- Set browser.isolated = true as default configuration
- Ensures each MCP session gets its own isolated browser context
- Prevents data sharing between different client sessions
- Combined with headed mode for optimal user experience

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Ryan Malloy 2025-08-11 04:55:45 -06:00
parent ddff9975e2
commit 4d13e72213

View File

@ -53,6 +53,7 @@ export type CLIOptions = {
const defaultConfig: FullConfig = { const defaultConfig: FullConfig = {
browser: { browser: {
browserName: 'chromium', browserName: 'chromium',
isolated: true,
launchOptions: { launchOptions: {
channel: 'chrome', channel: 'chrome',
headless: false, headless: false,