Skip to content

Commit

Permalink
Fix favicon in doc pages
Browse files Browse the repository at this point in the history
  • Loading branch information
falvaradorodriguez committed Aug 6, 2024
1 parent 36e6d64 commit 6c6514d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/main.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from fastapi import APIRouter, FastAPI
from fastapi.staticfiles import StaticFiles

from . import VERSION
from .routers import about, auth, default
Expand All @@ -8,8 +7,9 @@
title="Safe Auth Service",
description="API to grant JWT tokens for using across the Safe Core{API} infrastructure.",
version=VERSION,
docs_url=None,
redoc_url=None,
)
app.mount("/static", StaticFiles(directory="static"), name="static")

# Router configuration
api_v1_router = APIRouter(
Expand Down

0 comments on commit 6c6514d

Please sign in to comment.