You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Intellisense doesn't work if class variable is in ` ` such as `flex`. But works when the variable is in {` `} such as {`flex`}.
---interfaceProps { href:string;}// Intellisense doesn't work if class variable is in `` such as `flex`. But works when the variable is in {``} such as {`flex`}.// If you add {} around class variable intellisense (also eslint plugin) will start to work.const { href } =Astro.props;---
<aclass=`text-center text-md font-bold transition-all ${Astro.url.pathname===href?"text-primary":"text-card-foreground hover:text-primary"}`href={href}>
<slot />
</a>
The text was updated successfully, but these errors were encountered:
emrecancorapci
changed the title
Intellisense doesn't work only with ````
Intellisense doesn't work only with ``
Dec 29, 2024
emrecancorapci
changed the title
Intellisense doesn't work only with ``
Intellisense doesn't work only with `` in Astro
Dec 29, 2024
emrecancorapci
changed the title
Intellisense doesn't work only with `` in Astro
Intellisense doesn't work with `` in Astro
Dec 29, 2024
What version of VS Code are you using?
v1.96.2
What version of Tailwind CSS IntelliSense are you using?
v0.12.17
What version of Tailwind CSS are you using?
v3.4.17
What package manager are you using?
pnpm v9.15.1
What operating system are you using?
Pop!_OS 24.04 LTS
Tailwind config
VS Code settings
Reproduction URL
Reproduction Repo
Describe your issue
Intellisense doesn't work if class variable is in
` `
such as`flex`
. But works when the variable is in{` `}
such as{`flex`}
.The text was updated successfully, but these errors were encountered: