Written in Leptos with Tailwind CSS.
Find install instructions in Makefile.
Set
"rust-analyzer.rustfmt.overrideCommand": ["leptosfmt", "--stdin", "--rustfmt"]
for leptos view!
block formatting.
Install Tailwind CSS Intellisense
and set
"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,
Run trunk serve --release
for live preview of the website and styling (Thanks to hook in Trunk.toml
).