From 2f62eca33dfc210ae3fe697f5465081dde2df53e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Tue, 7 Oct 2025 21:42:14 +0200 Subject: [PATCH] Make logos available under `/logos` --- src/main.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main.rs b/src/main.rs index 2d3eadcb..0605c061 100644 --- a/src/main.rs +++ b/src/main.rs @@ -100,6 +100,11 @@ fn main() -> anyhow::Result<()> { base_url, }; ctx.copy_asset_dir("static", "static")?; + + // This provides the logos at original /logos URLs, which were available + // before the move to a static website. + ctx.copy_asset_dir("static/logos", "logos")?; + ctx.copy_asset_file( "static/text/well_known_security.txt", ".well-known/security.txt",