This is an adder for svelte-add
; you should read its README
before continuing here.
This adder's codename is tailwindcss
, and can be used like so:
npx svelte-add tailwindcss
This adder supports SvelteKit and Vite-powered Svelte apps (all the environments svelte-add
currently supports).
jit
(defaulttrue
): whether or not to use Tailwind Just-in-Time Mode
After the adder runs,
-
You can use Tailwind utility classes like
bg-blue-700
in the markup (components, routes,app.html
). -
You can use Tailwind directives like
@apply
and@screen
or use thetheme
function in Sveltestyle lang="postcss"
blocks or thesrc/app.postcss
file. -
You can configure Tailwind in the
tailwind.config.cjs
file. -
Your Tailwind CSS will be purged for production builds.