# Trunk.toml # Trunk is the WASM bundler for Bevy/Rust web builds. # Install: cargo install trunk # Dev server: trunk serve # Production build: trunk build --release [build] # Entry point HTML file target = "crates/sylpheed-viewer/index.html" # Output directory dist = "dist" # Public URL path (change to "/sylpheed/" if hosting in a subdirectory) public_url = "/" [watch] # Rebuild on changes in these paths paths = ["crates/", "assets/"] # Ignore these paths ignore = ["dist/", "target/"] [serve] port = 8080 open = false