Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/posva/vite-tailwind-starter
Starter using Vite + Tailwind for super fast prototyping
https://github.com/posva/vite-tailwind-starter
tailwind tailwindui vite vue
Last synced: 4 days ago
JSON representation
Starter using Vite + Tailwind for super fast prototyping
- Host: GitHub
- URL: https://github.com/posva/vite-tailwind-starter
- Owner: posva
- Created: 2020-05-06T21:42:19.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-21T04:30:37.000Z (14 days ago)
- Last Synced: 2024-10-21T07:27:24.990Z (14 days ago)
- Topics: tailwind, tailwindui, vite, vue
- Language: Vue
- Homepage: https://vite-tailwind.esm.dev/
- Size: 1.49 MB
- Stars: 459
- Watchers: 7
- Forks: 56
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-vue-3 - vite-tailwind-starter - Starter using Vite + Tailwind for super fast prototyping (Examples)
README
# Vite + Tailwind CSS Starter
> A [Tailwind CSS](http://tailwindcss.com/) starter template for [Vite](https://github.com/vitejs/vite)
## Tailwind UI Users
If you have access to [Tailwind UI](https://tailwindui.com), follow these steps to add it:
1. Install first-party plugins:
```sh
yarn add @tailwindcss/forms @tailwindcss/typography @tailwindcss/aspect-ratio
```2. Add the plugins to `tailwind.config.js`:
```js
// tailwind.config.js
module.exports = {
// ...
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
],
}
```## Installation
```sh
yarn
```## Development
```sh
yarn dev
```## Build
```sh
yarn build
```