Merge pull request #6969 from rjsparks/staticstypo

fix: correct static url pattern
This commit is contained in:
Robert Sparks 2024-01-24 14:30:11 -06:00 committed by GitHub
commit 36f9d59b2a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -169,7 +169,7 @@ if SERVER_MODE != 'production' and SERVE_CDN_FILES_LOCALLY_IN_DEV_MODE:
STATIC_URL = "/static/"
STATIC_ROOT = os.path.abspath(BASE_DIR + "/../static/")
else:
STATIC_URL = "https://static.ietf.org/lib/%s/"%__version__
STATIC_URL = "https://static.ietf.org/dt/%s/"%__version__
# Intentionally not setting STATIC_ROOT - see django/django (the default is None)
# List of finder classes that know how to find static files in