Use tailwindcss with standalone CLI

This commit is contained in:
Akira Tempaku 2024-04-19 03:56:30 +09:00
parent 4d784412fc
commit ece41474fc
16 changed files with 44 additions and 89 deletions

12
tailwind.config.js Normal file
View file

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