You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Vite + ReactJS + TS + TailwindCSS Template Project
React Application Template.
## Features
- Zero-config: Works out of the box without the need to install any other compiler or plugins
- Supports ES2015 syntax + features (`export`, `import`, `async`, `await`, `Promise`, ...)
- Supports TailwindCSS class names
## Prerequisites
- [`node.js`](https://nodejs.org)
## Installation
Clone the repository to a directory with a name of your choice f.e. your-project-name:
```
git clone git@github.com:ttarnowski/vite-react-ts-tailwind-template.git your-project-name
```
Change directory to the newly created project:
```
cd your_project_name
```
Open `package.json` and change this line:
```
"name": "vite-react-ts-tailwindcss-template",
```
To:
```
"name": "your-project-name",
```
And run:
```
npm install
```
or:
```
yarn
```
## Usage
Run:
```
npm run dev
```
or:
```
yarn dev
```
## Licence
MIT.
# ProjectPapersane