Description
What version of VS Code are you using?
v1.98
What version of Tailwind CSS IntelliSense are you using?
v0.14.15, but now return to v0.14.13
What version of Tailwind CSS are you using?
v4.0.14
What package manager are you using?
npm
What operating system are you using?
Windows
Tailwind config
In new version we don't have tailwind.config.js
VS Code settings
{
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"liveSassCompile.settings.excludeList": [
"/**/node_modules/**",
"/.vscode/**",
"/wp-admin/**",
"/**/plugins/**"
],
"editor.unicodeHighlight.allowedCharacters": {
"ס": true,
"ט": true,
"ו": true
},
"liveSassCompile.settings.generateMap": true,
"liveSassCompile.settings.formats": [
{
"format": "expanded",
"extensionName": ".css",
"savePath": null,
"savePathReplacementPairs": null
}
],
"tabnine.experimentalAutoImports": true,
"[php]": {
"editor.defaultFormatter": "DEVSENSE.phptools-vscode"
},
"beautify.config": "",
"liveSassCompile.settings.forceBaseDirectory": "wp-content/themes/gan-hamada/assets/styles",
"window.zoomLevel": 1,
"yaml.schemas": {
"file:///c%3A/Users/airfi/.vscode/extensions/atlassian.atlascode-3.4.23/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml"
},
"workbench.colorTheme": "325c5d4d-5614-4c58-b296-18924f2f6928",
"terminal.integrated.stickyScroll.enabled": true,
"workbench.tree.enableStickyScroll": false,
"solidity.telemetry": true,
"tailwindcss-intellisense.trace.server": "verbose",
"tailwindCSS.emmetCompletions": true,
"tailwindCSS.experimental.classRegex": [],
"tailwindCSS.includeLanguages": {
"html": "html",
"javascript": "javascript",
"typescript": "typescript",
"jsx": "javascriptreact",
"tsx": "typescriptreact",
"vue": "html",
"blade": "html",
"php": "html",
"plaintext": "html"
}
}
Reproduction URL
I can't do this, it's a private repo
Describe your issue
After updating the Tailwind CSS IntelliSense extension to v0.14.14, IntelliSense stopped working completely in .php, .html files. No class name suggestions are provided.
I updated to v0.14.15, hoping it would resolve the issue, but the behavior remains the same.
Things I tried:
- Reloading VS Code
- Reinstalling the extension
- Deleting .vscode and node_modules
Confirmed that Tailwind CSS is working in the frontend (classes are being applied correctly)