mirror of
https://git.suyu.dev/suyu/website
synced 2024-11-21 14:29:01 -07:00
14 lines
249 B
JavaScript
14 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;
|