https://github.com/amannn/vite-react-starter
A basic starter template for building React apps with Vite.
https://github.com/amannn/vite-react-starter
Last synced: 2 months ago
JSON representation
A basic starter template for building React apps with Vite.
- Host: GitHub
- URL: https://github.com/amannn/vite-react-starter
- Owner: amannn
- Created: 2024-02-21T15:49:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-02T14:10:09.000Z (about 1 year ago)
- Last Synced: 2024-10-05T03:40:58.250Z (8 months ago)
- Language: TypeScript
- Homepage:
- Size: 77.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vite-react-starter
A basic starter template for building React apps with Vite.
Create a new local app like this:
```sh
# Fetch files from this repo
npx tiged amannn/vite-react-starter YOUR_FOLDER_NAME# Install dependencies
npm install
```## Workflows
```sh
# Start the development server
npm run dev# Lint for TypeScript and ESLint errors
npm run lint# Run the app in production
npm run build
npm run start
```