Tailwind - web development

Base tailwind.css file

# These lines go at the top of the primary file
@tailwind base;
@tailwind components;
@tailwind utilities;
        

Compile Tailwind CSS

# Output minified with jit compiler enabled; Alter purge location as needed (If not specified in tailwind.config.js
npx tailwindcss -o css/tailwindCompiled.min.css --jit --purge="../templates/**/*.html" --minify
# This is meant to be used in the same directory as tailwind.css and tailwind.config.js