The web browser client for Minutely. This project is built using React, Vite, and Tailwind CSS. It consumes @minutely/shared for its UI primitives and API connectivity.
Ensure you have installed the dependencies:
cd minutely-web
pnpm install(Note: Since it depends on @minutely/shared via the file: protocol, ensure minutely-shared is present in the parent directory).
To run the web application locally for development:
pnpm run devThis will start the Vite development server. Open the provided localhost URL in your browser.
To build the web application for production:
pnpm run buildThis will run TypeScript type-checking and bundle the application into the dist/ directory. You can preview the production build using:
pnpm run preview