Remove bulma, add bun, tailwindcss, daisyui

This commit is contained in:
Akira Tempaku 2024-06-16 14:13:16 +09:00
parent bbb9ad4b0a
commit 7040fb5173
9 changed files with 46 additions and 4 deletions

14
tailwind.config.js Normal file
View file

@ -0,0 +1,14 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/response.lisp",
"./src/routes/**/*.lisp",
"./src/components/**/*.lisp",
],
theme: {
extend: {},
},
plugins: [
require('daisyui'),
],
}