lunatic-solutions/submillisecond

Static router doesn't work with `"/"` path

tqwewe opened this issue · 0 comments

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.