From 4db52e074b833cbfe3fe85ae288ff84a5b54c4dd Mon Sep 17 00:00:00 2001 From: Chris Meyers Date: Fri, 21 Nov 2025 15:19:48 -0500 Subject: [PATCH] Fix collectstatic (#16162) --- awx/settings/defaults.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/settings/defaults.py b/awx/settings/defaults.py index e05a745f10..bf04830942 100644 --- a/awx/settings/defaults.py +++ b/awx/settings/defaults.py @@ -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'), ]