-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Description
What version of Tailwind CSS are you using?
For example: v4.1.7
What build tool (or framework if it abstracts the build tool) are you using?
For example: postcss-cli 11.0.0, Next.js 15.1.7, Vite 6.1.0
What version of Node.js are you using?
For example: v20.0.0
What browser are you using?
For example: Chrome
What operating system are you using?
For example: macOS
Describe your issue
When using vite in library mode to create a component package, some classes work while others do not
- min-w-64 does, while min-w-32 or min-w-40 do not
- bg-blue-500 works, while bg-blue-200 does not
- many custom values like min-w-[200px] do not work, though data attributes do
- another curiosity is that the bg-gray-200 is applied to the shadcn components, but not where I am using it
This is where I'm setting the values: https://github.com/blebbit/authr/blob/main/packages/authr-react-tanstack/src/views/account.tsx#L8
This is a monorepo setup with pnpm workspaces. There seem to be similar issues since (#16631)
Known workarounds
Listing out the specific classes seems to work
@source inline("min-w-{32,40}");
@source inline("bg-slate-200");
Using the base path does not change things (as offered as solutions in other issues)
@source "./"