[IntelliSense] Any plan for supporting Leptos - A Rust-Based Framework? #13157
aswinmurali-io
started this conversation in
Ideas
Replies: 2 comments
-
This actually works as-is with the right configuration. I'm using the following {
"emmet.includeLanguages": {
"rust": "html",
"*.rs": "html"
},
"tailwindCSS.includeLanguages": {
"rust": "html",
"*.rs": "html"
},
"files.associations": {
"*.rs": "rust"
},
"editor.quickSuggestions": {
"other": "on",
"comments": "on",
"strings": true
},
"css.validate": false
} |
Beta Was this translation helpful? Give feedback.
0 replies
-
For anyone else, for whom its still not working, like me, please check if you have tailwind.config.js file in your main dir. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Leptos is a rust-based web framework for building web apps. Leptos supports typing html code via the
view!
macro. Currently, the Tailwind CSS vscode extension does not support type completion here. Do note that theview!
macro lets us type html code directly inside a rust file. Kinda like a.jsx
file. Any plans to support Leptos? Currently in the rust world, Leptos is a popular framework for web development but not having tailwind editor support sucks :(Beta Was this translation helpful? Give feedback.
All reactions