fix(web): add Tailwind CSS setup for design system rendering (#436)

Co-authored-by: Jason Woltje <[email protected]>
Co-committed-by: Jason Woltje <[email protected]>
This commit is contained in:
2026-02-21 23:36:16 +00:00
committed by jason.woltje
parent 1b66417be5
commit 7480deff10
4 changed files with 495 additions and 10 deletions
+12
View File
@@ -0,0 +1,12 @@
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}", "../../packages/ui/src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {},
},
plugins: [],
};
export default config;