69f7976702
Co-authored-by: Evan Song <ferothefox@users.noreply.github.com>
15 lines
286 B
JavaScript
15 lines
286 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: [require("@tailwindcss/typography")],
|
|
};
|
|
|
|
module.exports = config;
|