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 months ago
JSON representation

Starter using Vite + Tailwind for super fast prototyping

Lists

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
```