Skip to content

Commit

Permalink
Reset STATIC_ROOT and STATICFILES_DIRS
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood authored Aug 12, 2024
1 parent 72126c3 commit 6f39e21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@
# https://docs.djangoproject.com/en/5.0/howto/static-files/

STATIC_URL = "static/"
STATIC_ROOT = os.path.join(BASE_DIR, "app/static")
# STATICFILES_DIRS = [os.path.join(BASE_DIR, "app/static")]
STATIC_ROOT = os.path.join(BASE_DIR, "static")
STATICFILES_DIRS = [os.path.join(BASE_DIR, "app/static")]

# Default primary key field type
# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field
Expand Down

0 comments on commit 6f39e21

Please sign in to comment.