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 ac906bb commit ddf9545Copy full SHA for ddf9545
packages/vscode-tailwindcss/src/extension.ts
@@ -544,7 +544,7 @@ export async function activate(context: ExtensionContext) {
544
545
// Files outside a folder can't be handled. This might depend on the language.
546
// Single file languages like JSON might handle files outside the workspace folders.
547
- if (!folder) return
+ if (!folder || isExcluded(document.uri.fsPath, folder)) return
548
549
if (!(await api.workspaceNeedsLanguageServer())) return
550
0 commit comments