Let's see what's possible with the leptos wasm machine...
See Trunk.toml for build configuration
Trunk Commands
# Setup CLI
cargo install trunk
# Run
trunk serve --release
# Build Dist.
trunk build --release
VS Code Rust Analyser Setting
Rust analyser doesn't approve of leptos macros without the following settings :
"rust-analyzer.procMacro.ignored": {
"leptos_macro": [
// optional:
"component",
"server"
],
},