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
In latest version 0.29.0, the devtool won't open, but 0.28.* versions works.
Tested using this template:
https://github.com/electron-vite/electron-vite-vue
The text was updated successfully, but these errors were encountered:
yeah, same here, any fix?
Sorry, something went wrong.
you need to wait for window to open before opening devtools
if you are using async/await do something like this
await mainWindow.loadURL(devServerUrl) mainWindow.webContents.openDevTools()
if not
mainWindow.loadURL(devServerUrl).then(() => mainWindow.webContents.openDevTools())
you need to wait for window to open before opening devtools if you are using async/await do something like this await mainWindow.loadURL(devServerUrl) mainWindow.webContents.openDevTools() if not mainWindow.loadURL(devServerUrl).then(() => mainWindow.webContents.openDevTools())
await mainWindow.loadURL(devServerUrl) mainWindow.webContents.openDevTools() if not
Still won't work, even try to open the devtool from menu.
No branches or pull requests
In latest version 0.29.0, the devtool won't open, but 0.28.* versions works.
Tested using this template:
https://github.com/electron-vite/electron-vite-vue
The text was updated successfully, but these errors were encountered: