Added tailwind support

This commit is contained in:
Orche 2024-03-08 13:14:32 +02:00
parent da1db64e32
commit 23738ea6dd
8 changed files with 2684 additions and 6 deletions

14
tailwind.config.cjs Normal file
View file

@ -0,0 +1,14 @@
/** @type {import('tailwindcss').Config}*/
const config = {
content: [
"./src/**/*.{html,js,svelte,ts}",
"./node_modules/flowbite-svelte-icons/**/*.{html,js,svelte,ts}",],
theme: {
extend: {},
},
plugins: [],
};
module.exports = config;