Tailus does not require any particular configuration which implies that no documentation is needed, but this note guide you to set up your tailwind css project.
This guide will focus on running tailwind css with the CLI, for other use cases please read the official framework documentation.
Install tailwindcss and its peer dependencies via npm, and create your tailwind.config.js file.
Install tailwindcss and its peer dependencies via npm, and create your tailwind.config.js file.
Add the paths to all of your template files in your tailwind.config.js file.
Add the @tailwind directives for each of Tailwind’s layers to your main CSS file.
Run your build process with npm run dev or whatever command is configured in your package.json file.
Make sure your compiled CSS is included in the
(your framework might handle this for you), then start using Tailwind’s utility classes to style your content.