Setup tailwindcss and daisyui

This commit is contained in:
Akira Tempaku 2024-02-02 01:51:27 +09:00
parent cef077e986
commit 875be278dc
7 changed files with 1445 additions and 2 deletions

8
tailwind.config.js Normal file
View file

@ -0,0 +1,8 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/routes/**/*.lisp",
"./src/ui/**/*.lisp"
],
plugins: [require("daisyui")],
};