Skip to content

Commit

Permalink
fix staticfile location
Browse files Browse the repository at this point in the history
  • Loading branch information
Suryansh5545 committed Aug 6, 2023
1 parent 8fc2378 commit fa550b9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion settings/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
# https://docs.djangoproject.com/en/4.2/howto/static-files/

STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')

MEDIA_ROOT = os.path.join(BASE_DIR, "media")
MEDIA_URL = "/media/"
Expand Down
File renamed without changes.

0 comments on commit fa550b9

Please sign in to comment.