Files
WattpadDownloader/src/frontend/tailwind.config.cjs
T

22 lines
354 B
JavaScript
Raw Normal View History

2023-12-29 02:57:23 +00:00
const daisyui = require("daisyui");
const typography = require("@tailwindcss/typography");
/** @type {import('tailwindcss').Config}*/
const config = {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {},
},
plugins: [typography, daisyui],
2023-12-29 03:44:46 +00:00
daisyui: {
themes: [
2024-04-11 14:38:36 +00:00
"bumblebee"
2023-12-29 03:44:46 +00:00
],
},
2023-12-29 02:57:23 +00:00
};
module.exports = config;