A template for React applications using Vite.
- Vite
- React 18
- JavaScript
- ESLint configuration
- Testing setup with Vitest and React Testing Library
# Clone the repository
git clone [email protected]:goran1010/template-vite-react-js.git
# Navigate to project directory
cd template-vite-react-js
# Install dependencies
npm install
# Rename the environment file
cp .env.example .env
# Edit .env file as needed# Development server
npm run dev
# Build for production
npm run build
# Run tests
npm run testMIT