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
12 lines
269 B
TypeScript
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;
|