From a111731cb4326e3c9e9222167228104bc3ee252c Mon Sep 17 00:00:00 2001 From: Jack Levy Date: Sat, 28 Feb 2026 22:59:36 -0500 Subject: [PATCH] fix(tailwind): add lib/ to content scan so utils.ts classes aren't purged Party badge colors defined in lib/utils.ts were being stripped from the production CSS bundle because the lib/ directory was missing from the Tailwind content glob. Authored-By: Jack Levy --- frontend/tailwind.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/tailwind.config.ts b/frontend/tailwind.config.ts index d23e647..4002184 100644 --- a/frontend/tailwind.config.ts +++ b/frontend/tailwind.config.ts @@ -6,6 +6,7 @@ const config: Config = { "./pages/**/*.{js,ts,jsx,tsx,mdx}", "./components/**/*.{js,ts,jsx,tsx,mdx}", "./app/**/*.{js,ts,jsx,tsx,mdx}", + "./lib/**/*.{js,ts,jsx,tsx}", ], theme: { extend: {