This is a modern front-end project setup using Vite, React, and TypeScript. Vite provides a fast and optimized development experience, while React and TypeScript ensure robust and scalable applications.
- Clone the repository:
git clone https://github.com/BhimaPavanTeja/e-summit-rec.git
- Navigate to the project directory:
cd e-summit-rec - Install dependencies:
npm install # or yarn install
To start the development server, run:
npm run dev # or yarn devThe application will be available at http://localhost:5173.
| Command | Description |
|---|---|
npm run dev |
Start the development server |
npm run build |
Build the project for production |
npm run preview |
Preview the production build |
npm run lint |
Lint the project with ESLint |
├── src
│ ├── components # Reusable components
│ ├── pages # Page components
│ ├── assets # Static assets (images, fonts, etc.)
│ ├── hooks # Custom React hooks
│ ├── styles # Global styles
│ ├── App.tsx # Main app component
│ ├── main.tsx # Application entry point
├── public # Static files
├── .eslintrc # ESLint configuration
├── tsconfig.json # TypeScript configuration
├── vite.config.ts # Vite configuration
└── README.md # Project documentation