Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1.19 KB

readme.md

File metadata and controls

47 lines (29 loc) · 1.19 KB

Starter app for Tailwind projects

This is an extremely simple setup to develop Tailwind projects with everything you need to have a good development experience (ESlint + Prettier).

Dependencies included:

Required plugins (must be installed via VSCode extensions):

  • ESLint
  • PostCSS Language Support
  • Prettier - Code formatter
  • Tailwind CSS IntelliSense

Usage

Install required VSCode plugins

Install dependencies:

npm install

Run Tailwind CLI in watch mode:

npm run watch

You can use tailwind classes in any .html files in the src directory

Put any custom CSS that you may have in the 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

Enjoy! 😋