VS Code Setup
To get Tailwind CSS IntelliSense working with Recast in VS Code:
-
Install the Tailwind CSS IntelliSense (opens in a new tab) VS Code extension.
-
Add the following to your
.vscode/settings.json
:
{
"tailwindCSS.experimental.classRegex": [
["recast\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"]
]
}
Prettier Integration
Recast works seamlessly with the
prettier-plugin-tailwindcss (opens in a new tab).
Add the following to your .prettierrc
:
{ "tailwindFunctions": ["recast"] }
This ensures that your Tailwind classes within Recast components are properly sorted.

Troubleshooting
If you encounter any issues with the Tailwind CSS integration:
- Check that your VS Code settings are correctly configured for Tailwind CSS IntelliSense.
- Clear your build cache and restart your development server.