vite-react-electron
Super-fast Vite + React + Antd + Electron boilerplate.
Run Setup
Directory
dist
and src
-
Once
npm run dev
ornpm run build
is executed. Will be generateddist
, it is the same as thesrc
structure. -
This ensures the accuracy of path calculation.
How to work
-
The
Main-process
,Renderer-process
andPreload-script
are all config inconfigs/xxx.ts
. -
All files are built using
Vite
, is supper fast. -
scripts/build.mjs
only calls theVite
API and uses theconfigs/xxx.ts
config file to build. -
The difference between
scripts/watch.mjs
andbuild.mjs
is that the watch option is configured for the Main-process and Preload-script. The Renderer-process usesrequire ('vite').createServer
-
Manage projects more through configuration other than scripts. -- ? Simple and clear