This template provides a minimal setup + file structure to get Tailwind + React + TypeScript working in Vite with HMR and some ESLint rules.
.
├── public
│ └── example.svg
├── src
│ ├── App.tsx
│ ├── components
│ │ ├── home
│ │ │ └── index.tsx
│ │ └── shared
│ │ └── index.tsx
│ ├── constants
│ │ ├── env.ts
│ │ └── index.ts
│ ├── index.css
│ ├── index.html
│ ├── main.tsx
│ ├── pages
│ │ └── Home.tsx
│ ├── Router.tsx
│ ├── types
│ │ └── index.ts
│ └── utils
│ └── index.ts
├── vite.config.ts
└── package.json
use npm
, yarn
or pnpm
, etc.
npm install
npm run dev
npm run build