Created
September 29, 2025 11:53
-
-
Save megri/6e1a986087b88c1e9fd9797e5f6d6a1e to your computer and use it in GitHub Desktop.
Laminar Tailwind CSS IntelliSense integration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "files.watcherExclude": { | |
| "**/target": true | |
| }, | |
| "tailwindCSS.experimental.classRegex": [ | |
| [ | |
| "cls\\s*:=\\s*(\"[^\"]*\")", | |
| "\"([^\"]*\")" | |
| ], | |
| [ | |
| "cls\\(([^)]*)", | |
| "\"([^\"]*\")" | |
| ], | |
| [ | |
| "className\\s*:=\\s*(\"[^\"]*\")", | |
| "\"([^\"]*\")" | |
| ], | |
| [ | |
| "className\\(([^)]*)", | |
| "\"([^\"]*\")" | |
| ] | |
| ], | |
| "tailwindCSS.includeLanguages": { | |
| "scala": "html" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment