Files
clan-core/pkgs/clan-app/ui/tailwind.config.ts
2025-06-12 11:29:41 +01:00

13 lines
322 B
TypeScript

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