We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does this issue occur when all extensions are disabled?: Yes
Steps to Reproduce:
pnpm run dev
launch.json { "version": "0.2.0", "configurations": [ { "name": "Debug Main Process", "type": "node", "request": "launch", "cwd": "${workspaceRoot}", "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron-vite", "windows": { "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron-vite.cmd" }, "runtimeArgs": ["--sourcemap"], "env": { "REMOTE_DEBUGGING_PORT": "9222" }, "outputCapture": "std", }, { "name": "Debug Renderer Process", "port": 9222, "request": "attach", "type": "chrome", "webRoot": "${workspaceFolder}/src/renderer", "timeout": 60000, "presentation": { "hidden": true } } ], "compounds": [ { "name": "Debug All", "configurations": ["Debug Main Process", "Debug Renderer Process"], "presentation": { "order": 1 } } ] }
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
roblourens
No branches or pull requests
Does this issue occur when all extensions are disabled?: Yes
Steps to Reproduce:
pnpm run dev
is OK.The text was updated successfully, but these errors were encountered: