16 lines
359 B
JavaScript
16 lines
359 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{html,js,svelte,ts}",
|
|
"./node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}",
|
|
"../node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}",
|
|
],
|
|
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
|
|
plugins: [require("flowbite/plugin")],
|
|
darkMode: "class",
|
|
};
|