I want to target all routes and that just doesnt seem to work.
All of the below do not work.
mount.mount("/*", Static::new(Path::new("public")));
mount.mount("*", Static::new(Path::new("public")));
mount.mount("**", Static::new(Path::new("public")));
mount.mount("/(.*)", Static::new(Path::new("public")));