One day this will work!

This commit is contained in:
Drew Larson
2017-01-15 20:47:56 -06:00
parent d6b164dd70
commit 3f31874d0c
2 changed files with 4 additions and 3 deletions
+3 -3
View File
@@ -123,10 +123,10 @@ STATICFILES_FINDERS = (
'compressor.finders.CompressorFinder',
)
STATICFILES_DIRS = [
('vendor', os.path.join(BASE_DIR, 'vendor')),
os.path.join(BASE_DIR, 'assets')
('vendor', os.path.join(BASE_DIR, '../vendor')),
os.path.join(BASE_DIR, '../assets')
]
STATIC_ROOT = 'STATIC'
STATIC_ROOT = 'static'
STATIC_URL = '/static/'
AUTH_USER_MODEL = 'registration.CustomUser'