try and fix staticfiles

This commit is contained in:
2017-02-07 22:43:25 -05:00
parent dfb3ccf1ca
commit e4d6d810ae

View File

@@ -163,7 +163,7 @@ USE_TZ = True
# https://docs.djangoproject.com/en/1.10/howto/static-files/
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
STATIC_ROOT = 'staticfiles'
STATICFILES_DIRS = (
os.path.join(BASE_DIR, 'static'),
)