Fix collectstatic (#16162)

This commit is contained in:
Chris Meyers 2025-11-21 15:19:48 -05:00 committed by GitHub
parent 4e1911f7c4
commit 4db52e074b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -83,7 +83,7 @@ USE_I18N = True
USE_TZ = True
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'ui', 'build', 'static'),
os.path.join(BASE_DIR, 'ui', 'build'),
os.path.join(BASE_DIR, 'static'),
]