start-browser
Launch a browser instance to navigate directly to your Vite Dev server URL, enabling real-time code modifications and live updates via Hot Module Replacement.
Instructions
Launches a browser instance and navigates to the dev server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
headless | No | Run browser in headless mode | |
targetUrl | No | URL of the dev server (default: http://localhost:5173) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"headless": {
"description": "Run browser in headless mode",
"type": "boolean"
},
"targetUrl": {
"description": "URL of the dev server (default: http://localhost:5173)",
"type": "string"
}
},
"type": "object"
}