Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/janplazovnik/vite-react-ts-tailwind
- Owner: JanPlazovnik
- Created: 2022-06-10T14:52:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-06-10T15:11:15.000Z (over 2 years ago)
- Last Synced: 2024-11-07T08:43:39.816Z (2 months ago)
- Topics: react, tailwind, typescript, vite
- Language: TypeScript
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```