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 44e38c3 commit fc30d0dCopy full SHA for fc30d0d
packages/tailwindcss-language-server/src/server.ts
@@ -1579,10 +1579,14 @@ class TW {
1579
pattern: normalizePath(filename),
1580
priority: 0,
1581
})
1582
- .concat({
1583
- pattern: normalizePath(configPath),
1584
- priority: 0,
1585
- })
+ .concat(
+ isCssFile
+ ? {
+ pattern: normalizePath(configPath),
1586
+ priority: 0,
1587
+ }
1588
+ : []
1589
+ )
1590
.concat({
1591
pattern: normalizePath(path.join(path.dirname(filename), '**')),
1592
priority: 2,
0 commit comments