A simple web application for calculating mortgage payments using various parameters
Ensure you have the following installed on your machine:
-
Clone the repository or download the project files:
git clone <repository-url> cd mortgage-calculator
-
Install dependencies:
pnpm install
-
Start the development server:
pnpm dev
-
Open your browser and navigate to:
http://localhost:5173
To create an optimized production build:
pnpm build
The output files will be located in the dist
directory.
Run ESLint to check for code issues:
pnpm lint
- src/: Contains all source code, including components, styles, and utilities.
- public/: Static assets like images and meta files.
- package.json: Project dependencies and scripts.
- postcss.config.js: PostCSS configuration for Tailwind CSS and Autoprefixer.
- tailwind.config.js: Tailwind CSS configuration.
- vite.config.ts: Vite configuration file for building the application.