remove max file size for embedding static files
Fixed in crate
This commit is contained in:
parent
9ea6a9c56a
commit
70a0575d08
1 changed files with 1 additions and 1 deletions
|
@ -573,7 +573,7 @@ async fn main() -> Result<()> {
|
|||
app.at("/new-account").get(create_account_endpoint);
|
||||
app.at("/metrics").get(metrics_endpoint);
|
||||
|
||||
auto_serve_dir!(app, "/static", "static", 51200);
|
||||
auto_serve_dir!(app, "/static", "static");
|
||||
|
||||
println!("Server started at {}", &bind_address);
|
||||
|
||||
|
|
Loading…
Reference in a new issue