15 lines
249 B
JavaScript
15 lines
249 B
JavaScript
|
/** @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;
|