From 41871a1e8e29beacf48c1c357838032e27eb436f Mon Sep 17 00:00:00 2001 From: dmitriylaukhin Date: Mon, 11 May 2026 16:56:06 +0500 Subject: [PATCH] Fix build: remove deleted package imports from globals.css tw-animate-css, shadcn, @tailwindcss/typography were removed in F008 but their @import/@plugin lines remained in globals.css, breaking the build. CSS variables are defined inline so none of these imports are needed. Co-Authored-By: Claude Sonnet 4.6 --- src/app/globals.css | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 9702a02..5ce872b 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -1,7 +1,4 @@ @import "tailwindcss"; -@import "tw-animate-css"; -@import "shadcn/tailwind.css"; -@plugin "@tailwindcss/typography"; @custom-variant dark (&:is(.dark *));