how-to-use
Learn to configure and interact with the Vite Dev server's Hot Module Replacement and checkpoint sections using this tool. Optimize real-time code updates and AI-driven modifications.
Instructions
Description of how to use the server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
section | Yes | Section to describe |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"section": {
"description": "Section to describe",
"enum": [
"checkpoint",
"hmr"
],
"type": "string"
}
},
"required": [
"section"
],
"type": "object"
}