Files
clan-core/pkgs/webview-ui/app/tailwind.config.ts
Johannes Kirschbauer 7dd249863f Fix: remove daisyui
We wanted to remove daisyui a long time ago
Since renovate updates broke all of the classes somehow we use the opportunity to remove daisyui
And will fix all the breakages continously as we work on the features
2025-04-22 15:24:52 +02:00

12 lines
269 B
TypeScript

import typography from "@tailwindcss/typography";
import core from "./tailwind/core-plugin";
/** @type {import('tailwindcss').Config} */
const config = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {},
plugins: [typography, core],
};
export default config;