This project is a boilerplate for a modern web application using Vite.js, React, TypeScript, and Tailwind CSS.
It is set up with pnpm
for package management.
Follow these instructions to set up and run the project locally.
Make sure you have pnpm
installed globally. If not, you can install it using npm:
npm install -g pnpm
or if you use yarn:
yarn global add pnpm
or if you use macos (highly recommended):
brew install pnpm
git clone https://github.com/gllmt/starter-vite-react-ts-tailwind.git
cd starter-vite-react-ts-tailwind
pnpm install
pnpm dev
pnpm build
starter-vite-react-ts-tailwind/
├── public/
│ └── vite.svg
├── src/
│ ├── assets/
│ ├── components/
│ ├── App.tsx
│ ├── index.css
│ ├── main.tsx
│ └── vite-env.d.ts
├── index.html
├── package.json
├── pnpm-lock.yaml
├── postcss.config.js
├── tailwind.config.js
├── tsconfig.json
└── vite.config.ts
You can customize the project by editing the following files:
- tailwind.config.js: Tailwind CSS configuration.
- postcss.config.js: PostCSS configuration.
- tsconfig.json: TypeScript configuration.
- vite.config.ts: Vite configuration.
This project is licensed under the MIT License.