Skip to content

Commit

Permalink
fix in settings.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Blazej Fitrzyk committed Dec 10, 2024
1 parent fb8fd84 commit 859af1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vmmanager/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@
# https://docs.djangoproject.com/en/3.2/howto/static-files/

STATIC_URL = "/static/"
STATIC_ROOT = BASE_DIR + "/staticfiles/"
STATICFILES_DIRS = (BASE_DIR + "/static_dev",) # TODO MOVE OUT OF MAIN FOLDER
STATIC_ROOT = BASE_DIR / "staticfiles/"
STATICFILES_DIRS = (BASE_DIR / "static_dev",) # TODO MOVE OUT OF MAIN FOLDER

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

0 comments on commit 859af1d

Please sign in to comment.