Lets see what lighthouse says
All checks were successful
Build, Push, and Deploy to Nomad / docker-nomad (push) Successful in 35s

This commit is contained in:
2024-12-21 23:56:46 +01:00
parent 79eeb1b10c
commit e392b43123
2 changed files with 2 additions and 2 deletions

View File

@@ -56,7 +56,7 @@ class Application:
"""Mount static file directories with caching."""
self.app.mount("/data", CustomStaticFiles(directory="data"), name="data")
self.app.mount("/static", CustomStaticFiles(directory="static"), name="static")
self.app.mount("/images", CustomStaticFiles(directory="static/images"), name="img")
self.app.mount("/img", CustomStaticFiles(directory="static/images"), name="img")
def _include_routers(self):
"""Include all route controllers."""