[IntelliSense] Add package.json field to detect configuration file in monorepos for V4 #13314
lukemorales
started this conversation in
Ideas
Replies: 2 comments 2 replies
-
Beta Was this translation helpful? Give feedback.
2 replies
-
it doesn't works in a sveltekit project, i used this config {
"editor.quickSuggestions": {
"strings": "on"
},
"tailwindCSS.experimental.configFile": "./src/app.css"
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Since V4 approach to configuring tailwind information relies on a css file, the VSCode extension is not able to find a configuration file for its intelissense in a monorepo setup. The only way I got it to work was to use experimental features to inform the extension where to look for the config:
It would be nice if we could add a field to
package.json
or another way to tell the extension where's the css file it needs to use for configurationBeta Was this translation helpful? Give feedback.
All reactions