-
Notifications
You must be signed in to change notification settings - Fork 211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Intellisense with multiple tailwind configs doesn't work correctly #1108
Comments
Hey! This is a limitation of the extension. I'd love to make this more automatic by default but that's a bit of an undertaking. Whenever you have a project with multiple configs like this the best way to handle this currently is to use our I'd use these settings for the project in the reproduction (add these to a {
"tailwindCSS.experimental.configFile": {
"./tailwind.new-design.config.js": [
"./src/new-design/**",
"./src/ui-kit/**",
],
"./tailwind.config.js": [
"./index.html",
"./src/**",
],
}
} The files should be matched in order so the first config ( |
@thecrypticace is multiple configs support better with tailwind v4? (duplicating a question in case there is a difference here between intellisense extension and prettier plugin 😅) |
Generally, yes. However, in your project's case you'd likely still want to use the config option because the same "root" folders cover both sets of configs. |
What version of VS Code are you using?
Version: 1.95.3 (Universal)
What version of Tailwind CSS IntelliSense are you using?
v0.12.16
What version of Tailwind CSS are you using?
v3.4.16
What package manager are you using?
npm
What operating system are you using?
macOS 15.1.1 (24B91)
Tailwind config
VS Code settings
nothing tailwind- or extension-related was changed
Reproduction URL
https://github.com/artaommahe/tailwind-intellisense-multiple-configs
NewDesignComponent
andButton
components in vscodeborder should be red, bg black, text white, p-4 bigger, etc

same with colors, secondary border and p-2 are not recognized

Describe your issue
In our project we're on a way of slow migration from the old messy design system (set in the main tailwind config) to the new shinny one (set in another config). While tailwind itself recognizes both configs and there corresponding content files properly and all the colors and other values are correct in the browser, the vscode extension struggles here and sometimes shows correct (new) values for
new-design/*
andui-kit/*
components, sometimes not. In the reproduction repo it even always shows the old values for some reason.The text was updated successfully, but these errors were encountered: