2024-03-08 12:14:32 +01:00
|
|
|
/** @type {import('tailwindcss').Config}*/
|
|
|
|
const config = {
|
|
|
|
content: [
|
2024-03-16 01:30:53 +01:00
|
|
|
"./src/**/*.{html,js,svelte,ts}",
|
|
|
|
"./node_modules/flowbite-svelte-icons/**/*.{html,js,svelte,ts}",
|
|
|
|
],
|
2024-03-08 12:14:32 +01:00
|
|
|
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
|
2024-03-16 01:30:53 +01:00
|
|
|
plugins: [require("@tailwindcss/typography")],
|
2024-03-08 12:14:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = config;
|