submillisecond
submillisecond copied to clipboard
Static router doesn't work with `"/"` path
The following router shows 404 with /index.html, but instead only works with //index.html (with double / prefix).
router! {
"/" => static_router!("./static")
}
This should be fixed so /index.html matches directly.