Skip to content
Snippets Groups Projects
Commit 092d1e13 authored by unknown's avatar unknown
Browse files

add sass preprocessor

parent 28bfff5f
No related merge requests found
......@@ -25,6 +25,7 @@ INSTALLED_APPS = (
'import_members',
'squarepay',
'formtools',
'sass_processor',
'bootstrap4',
)
......@@ -64,9 +65,16 @@ DATABASE_ROUTERS = ['import_members.db.MemberDbRouter']
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.7/howto/static-files/
STATICFILES_FINDERS = [
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'sass_processor.finders.CssFinder',
]
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'static'),
]
STATIC_URL = '/media/'
STATIC_ROOT = os.path.join(ROOT_DIR, 'media')
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment