You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Making it easier to build Electron apps with Vite:
a single config file vite.config.ts for both main and renderer process:
exportdefault{// ..config for building the renderer codeplugins: [// automatically starts the main process// after the vite server is startedelectron({main: './main/index.ts',preload: './preload/index.ts'})]}
more features baked in?
The text was updated successfully, but these errors were encountered:
Making it easier to build Electron apps with Vite:
vite.config.ts
for both main and renderer process:The text was updated successfully, but these errors were encountered: