---
title: Use daisyUI with Tailwind CSS Standalone CLI
desc: How to run daisyUI with Tailwind CSS Standalone CLI without Node.js
---
### Build CSS
Run this command to build the CSS file using Tailwind CSS executable.
Using `--watch` will automatically update the output.css file when you change the input.css file.
For CI/CD, run the command without `--watch` to generate the output.css file once.
```sh:Terminal
./tailwindcss -i input.css -o output.css --watch
# For Windows
tailwindcss.exe -i input.css -o output.css --watch
```
Now you can use daisyUI class names!