Troubleshooting
This guide covers common issues you might encounter while using Pacy and their solutions.
Installation Issues
Section titled “Installation Issues”IDE Extension Installation Issues
Section titled “IDE Extension Installation Issues”Installation from the command line might not work for some users. Here, we provide 2 more alternative ways to install the extension.
Install from a link
Section titled “Install from a link”You can install the extension to VSCode from the following link:
For Cursor and Windsurf, you can download the following file and drag and drop it to your editor’s extensions tab:
Manual Installation
Section titled “Manual Installation”If these links don’t work, or you’d like to use pacy with another VSCode-based editor, you can search “Pacy Devtools Bridge” in your editor, or you can download the .vsix
file from the following link, and later drag and drop it into your editor’s extensions tab:
MCP Installation Issues
Section titled “MCP Installation Issues”Manual Installation
Section titled “Manual Installation”For manually installing the MCP server, you can add this to your AI agent’s MCP configuration file:
{ "mcpServers": { "pacy-devtools": { "command": "npx", "args": ["--yes", "@pacy-dev/mcp"] } }}
Code Inspector Issues
Section titled “Code Inspector Issues”Code inspector is showing the right file path, but the line number is wrong
Section titled “Code inspector is showing the right file path, but the line number is wrong”- Use
@pacy-dev/devtools-plugin
to configure your project. - If you’re using React with Vite, and if the
@vitejs/plugin-react
or@vitejs/plugin-react-swc
is listed among the plugins, make sure@pacy-dev/devtools-plugin
comes before. - Similarly, if you’re using Vue, Svelte or any other framework, make sure
@pacy-dev/devtools-plugin
comes before the framework’s plugin.