First of all, you have to clone the project and install npm dependencies:
git clone https://github.com/Sanfra1407/vue-cash-flow.git
cd vue-cash-flow
npm install
To serve a development environment, you have to run:
npm run dev
A local server will start at http://localhost:3000/
To compile the production version, you just need to run:
npm run build
A dist/
directory will be created, in the application root, with all optimized assets.
It's possibile to see a preview of the built app by running:
npm run preview
A local server will start at http://localhost:3080/ with the production version.
To deploy your application, you can follow the official Vite.js guide.