chore: remove unused favicon.ico

This commit is contained in:
Jon Seager 2026-02-06 19:07:20 +00:00
parent c0d6e588f6
commit 5959f625b5
No known key found for this signature in database
2 changed files with 0 additions and 11 deletions

View file

@ -32,7 +32,6 @@ pub(super) fn router() -> axum::Router<AppState> {
"/components/searchable-select.js",
get(searchable_select_js),
)
.route("/favicon.ico", get(favicon))
.route("/favicon-light.svg", get(favicon_light))
.route("/favicon-dark.svg", get(favicon_dark))
}
@ -81,16 +80,6 @@ async fn searchable_select_js() -> impl IntoResponse {
)
}
async fn favicon() -> impl IntoResponse {
(
[
("content-type", "image/x-icon"),
("cache-control", "public, max-age=604800"),
],
include_bytes!("../../../../static/favicon.ico").as_ref(),
)
}
async fn favicon_light() -> impl IntoResponse {
(
[

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB