How to install Tailwind CSS and daisyUI in a Deno Fresh project
Use jsr
to initialize a new Fresh project in the current directory
deno run -Ar jsr:@fresh/init ./ --tailwind --vscode
Add daisyUI
deno i -D npm:daisyui@latest
Add daisyUI to your CSS file (and remove old styles)
@import "tailwindcss";
@plugin "daisyui";
Now you can use daisyUI class names!
Run the dev server
deno task dev