Browse Source

fix: 🐛 fix outdates redoc cdn link

Previously, redoc.standalone.js file was hosted in jsdelivr.net. This returns 404 now. To fix this, the hoster was changed to unpkg.com
pull/14432/head
yoavstr 8 months ago
parent
commit
055848c754
  1. 2
      fastapi/openapi/docs.py

2
fastapi/openapi/docs.py

@ -189,7 +189,7 @@ def get_redoc_html(
It is normally set to a CDN URL. It is normally set to a CDN URL.
""" """
), ),
] = "https://cdn.jsdelivr.net/npm/redoc@2/bundles/redoc.standalone.js", ] = "https://unpkg.com/redoc@latest/bundles/redoc.standalone.js",
redoc_favicon_url: Annotated[ redoc_favicon_url: Annotated[
str, str,
Doc( Doc(

Loading…
Cancel
Save