increase bundling limit

This commit is contained in:
bain 2024-06-01 23:32:18 +02:00
parent 963f04a88b
commit 3cb7293c36
Signed by: bain
GPG key ID: 31F0F25E3BED0B9B

View file

@ -573,7 +573,7 @@ async fn main() -> anyhow::Result<()> {
app.at("/new-account").get(create_account_endpoint);
app.at("/metrics").get(metrics_endpoint);
auto_serve_dir!(app, "/static", "static");
auto_serve_dir!(app, "/static", "static", 51200);
println!("Server started at {}", &bind_address);