We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
*
1 parent 80336ae commit f5006a8Copy full SHA for f5006a8
packages/tailwindcss-language-server/src/server.ts
@@ -876,9 +876,12 @@ async function createProjectService(
876
state.jitContext = state.modules.jit.createContext.module(state)
877
state.jitContext.tailwindConfig.separator = state.config.separator
878
if (state.jitContext.getClassList) {
879
- state.classList = state.jitContext.getClassList().map((className) => {
880
- return [className, { color: getColor(state, className) }]
881
- })
+ state.classList = state.jitContext
+ .getClassList()
+ .filter((className) => className !== '*')
882
+ .map((className) => {
883
+ return [className, { color: getColor(state, className) }]
884
+ })
885
}
886
} else {
887
delete state.jitContext
0 commit comments