restore comment

This commit is contained in:
kaysond 2021-11-30 11:16:54 -08:00 committed by nitnelave
parent e11a8460ff
commit 82770a5ff0

View File

@ -74,10 +74,10 @@ fn http_config<Backend>(
.service(Files::new("/static", "./app/static")) .service(Files::new("/static", "./app/static"))
// Serve static fonts // Serve static fonts
.service(Files::new("/static/fonts", "./app/static/fonts")) .service(Files::new("/static/fonts", "./app/static/fonts"))
// Serve the index // Default to serve index.html for unknown routes, to support routing.
.service( .service(
web::scope("/") web::scope("/")
.route("", web::get().to(index)) .route("", web::get().to(index)) // this is necessary because the below doesn't match a request for "/"
.route(".*", web::get().to(index)), .route(".*", web::get().to(index)),
); );
} }