chore: favicon
All checks were successful
Node.js CI / Lint and Test (push) Successful in 46s

This commit is contained in:
2025-08-11 20:03:03 -07:00
parent 9f041454c0
commit fc9ca35a55

View File

@@ -52,6 +52,10 @@ export const instantiateServer = (lynira: Lynira): void => {
response.send(fourOhFour);
});
server.get("/favicon.ico", (_request, response) => {
response.redirect("https://cdn.nhcarrigan.com/favicon/favicon.ico");
});
// WILDCARD: anything static must come before this route.
// eslint-disable-next-line max-statements -- Big function due to multiple routes.
server.get("*", async(request, response) => {