Merge develop into test - sync latest code

This commit is contained in:
2026-04-10 12:31:19 +08:00
1255 changed files with 107256 additions and 24904 deletions

View File

@@ -0,0 +1,20 @@
/*
* @Description: Vue MCP Plugin - Enable MCP server for Vue application debugging
*/
import { VueMcp } from 'vite-plugin-vue-mcp'
export default function createVueMcpPlugin() {
return VueMcp({
// The host to listen on, default is `localhost`
host: 'localhost',
// Print the MCP server URL in the console
printUrl: true,
// Update the address of the MCP server in the cursor config file `.cursor/mcp.json`
updateCursorMcpJson: false, // Disable for OpenCode environment
// The path to the MCP server, default is `/__mcp`
mcpPath: '/__mcp',
})
}