Spaces:
Running
Running
File size: 554 Bytes
edbcb33 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# Simple Tailwind CSS Starter
This is an extremley simple setup to develop Tailwind projects. This will be used in my Tailwind From Scratch course.
## Usage
Install dependencies
```
npm install
```
Run Tailwind CLI in watch mode
```
npm run dev
```
You can use tailwind classes in any .html files in the root directory
Put any custom CSS that you may have in the **src/input.css** file
Add any config values to the **tailwind.config.js** file
To build once, run
```
npm run build
```
You only need to deploy your html files and css/style.css
|