An open API service indexing awesome lists of open source software.

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.

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
```