Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/janplazovnik/vite-react-ts-tailwind

Template repository for a new React app using TypeScript, Vite and TailwindCSS
https://github.com/janplazovnik/vite-react-ts-tailwind

react tailwind typescript vite

Last synced: 14 days ago
JSON representation

Template repository for a new React app using TypeScript, Vite and TailwindCSS

Awesome Lists containing this project

README

        

# vite-react-ts-tailwind

Template repository for a new React app using TypeScript, Vite and TailwindCSS.

### Instalation

``` bash
$ npm install
```

or

``` bash
$ yarn install
```

### Basic usage

``` bash
# dev server with hot reload at http://localhost:3000
$ npm start
```

or

``` bash
# dev server with hot reload at http://localhost:3000
$ yarn start
```

Navigate to [http://localhost:3000](http://localhost:3000). The app will automatically reload if you change any of the source files.

#### Build

Run `build` to build the project. The build artifacts will be stored in the `build/` directory.

```bash
# build for production with minification
$ npm run build
```

or

```bash
# build for production with minification
$ yarn build
```