31 lines
509 B
Markdown
31 lines
509 B
Markdown
# Aero Resolve - Frontend
|
|||
|
|
|
||
|
|
This is the frontend application built with React and Vite.
|
||
|
|
|
||
|
|
## 🚀 Getting Started
|
||
|
|
|
||
|
|
### Prerequisites
|
||
|
|
- Node.js (v18+)
|
||
|
|
|
||
|
|
### Installation
|
||
|
|
1. Navigate to the frontend directory (if you aren't already here):
|
||
|
|
```bash
|
||
|
|
cd frontend
|
||
|
|
```
|
||
|
|
2. Install the dependencies using npm:
|
||
|
|
```bash
|
||
|
|
npm install
|
||
|
|
```
|
||
|
|
|
||
|
|
### Development
|
||
|
|
Start the local development server:
|
||
|
|
```bash
|
||
|
|
npm run dev
|
||
|
|
```
|
||
|
|
|
||
|
|
### Build for Production
|
||
|
|
To build the application for production:
|
||
|
|
```bash
|
||
|
|
npm run build
|
||
|
|
```
|