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 23dc770 commit 75ebf04Copy full SHA for 75ebf04
packages/tailwindcss-language-server/src/project-locator.ts
@@ -729,7 +729,7 @@ class FileEntry {
729
* Determine which Tailwind versions this file might be using
730
*/
731
async resolvePossibleVersions() {
732
- this.meta = this.content ? analyzeStylesheet(this.content) : null
+ this.meta ??= this.content ? analyzeStylesheet(this.content) : null
733
}
734
735
/**
0 commit comments