react-vite-app/README.md
A minimal and modern React application built with the latest dependencies and recommended best practices.
# Install dependencies
npm install
# Start development server
npm run dev
The app will open automatically at http://localhost:3000
# Create production build
npm run build
# Preview production build
npm run preview
# Run ESLint
npm run lint
# Format code with Prettier
npm run format
react-vite-app/
āāā src/
ā āāā App.jsx # Main App component
ā āāā main.jsx # Application entry point
ā āāā index.css # Global styles with Tailwind imports
āāā index.html # HTML entry point
āāā vite.config.js # Vite configuration
āāā postcss.config.js # PostCSS configuration
āāā eslint.config.js # ESLint configuration (flat config)
āāā .prettierrc # Prettier configuration
āāā package.json # Dependencies and scripts
npm run dev - Start development servernpm run build - Build for productionnpm run preview - Preview production build locallynpm run lint - Run ESLintnpm run format - Format code with Prettier