fix issue with static files in dev

This commit is contained in:
Markos Gogoulos
2025-02-10 22:04:14 +02:00
parent 0392dbe1ed
commit 313cd9cbc6

View File

@ -46,5 +46,5 @@ MIDDLEWARE = [
DEBUG = True
CORS_ORIGIN_ALLOW_ALL = True
# STATICFILES_DIRS = (os.path.join(BASE_DIR, 'static_files/'),)
STATICFILES_DIRS = (os.path.join(BASE_DIR, 'static'),)
STATIC_ROOT = os.path.join(BASE_DIR, 'static_collected')