mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
15 lines
302 B
TypeScript
15 lines
302 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./src/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"../../apps/*/src/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"../../packages/ui/src/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|