This commit is contained in:
Turbobot
2024-03-21 13:41:16 +08:00
committed by giancarlo
commit bb58169fe9
204 changed files with 26228 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import type { Config } from "tailwindcss";
import baseConfig from "@acme/tailwind-config";
export default {
// We need to append the path to the UI package to the content array so that
// those classes are included correctly.
content: [...baseConfig.content, "../../packages/ui/src/**/*.{ts,tsx}"],
presets: [baseConfig],
} satisfies Config;