Merge pull request #13125 from jbradberry/improve-staticfile-management

UI static files are now directly copied to the proper static dir
This commit is contained in:
Jeff Bradberry
2022-10-27 09:25:09 -04:00
committed by GitHub
3 changed files with 15 additions and 15 deletions

View File

@@ -101,7 +101,7 @@ USE_L10N = True
USE_TZ = True
STATICFILES_DIRS = (os.path.join(BASE_DIR, 'ui', 'build', 'static'), os.path.join(BASE_DIR, 'static'))
STATICFILES_DIRS = [os.path.join(BASE_DIR, 'ui', 'build', 'static'), os.path.join(BASE_DIR, 'static')]
# Absolute filesystem path to the directory where static file are collected via
# the collectstatic command.