mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 00:36:34 +02:00
16 lines
302 B
TypeScript
16 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;
|