Open caoxiemeihao opened 2 years ago
Why vite-plugin-electron
unable to process vitest integration with playwright ? while vite-electron-plugin
works very well ?
It's embarrassing, I don't know how to use vitest and playwright yet. 😅
Why vite-plugin-electron unable to process vitest integration with playwright ? while vite-electron-plugin works very well ?
@vindecodex Can you provide a minimal Demo?
vite-plugin-electron
vsvite-electron-plugin
electron .
command to start or restart the Electron App.vite-plugin-electron
uses Vite builds such as Main-Process, Preload-Scripts, which are based on the build API provided by Vite, which means it works well with all of Vite's ecosystems.vite-electron-plugin
is much faster(Not Bundle), it is only based onesbuild
to convert.ts
files, so it has very high performance. It has a plugin system that references Vite's implementation, but is not compatible with Vite's plugins.关于 vite-plugin-electron 与 vite-electron-plugin
electron .
启动或重启 Electron App。