Skip to content

Commit

Permalink
Fix location for static files
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Cengia <mattcen@mattcen.com>
  • Loading branch information
mattcen committed Feb 5, 2021
1 parent 3f60ed8 commit 9d2d7af
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions mygpo/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,9 @@ def get_intOrNone(name, default):

# Static Files

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

STATICFILES_DIRS = (os.path.abspath(os.path.join(BASE_DIR, "..", "static")),)


# Media Files
Expand Down

0 comments on commit 9d2d7af

Please sign in to comment.