Files
Project-Manager/frontend/README.md

536 B

Build instructions (macOS)

  1. Install deps:
cd "$(pwd)/frontend"
npm install
  1. Build the app (Vite):
npm run build
  1. Copy the build into the Electron app root (overwrite dist/):
# from project root
cp -R frontend/dist/* ./dist/
  1. Start Electron:
npm start

Notes

  • Ensure vite and @vitejs/plugin-react are in frontend/package.json devDependencies.
  • If your frontend source is in a different folder, place vite.config.js next to that source or update the path above.