added favicon
All checks were successful
Restart Website Service / restart_service (push) Successful in 27s

This commit is contained in:
Snorre Ettrup Altschul 2025-04-01 22:42:34 +02:00
parent 281315ecb3
commit 55e61bf421
2 changed files with 1 additions and 0 deletions

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View file

@ -94,6 +94,7 @@ fn get_mime_type<'a>(extension: Option<&'a OsStr>) -> String {
Some("css") => "text/css".to_string(),
Some("html") => "text/html".to_string(),
Some("png") => "image/png".to_string(),
Some("ico") => "image/vnd.microsoft.icon".to_string(),
_ => "text/text".to_string(),
}
}