13 lines
322 B
TypeScript
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;
|