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

add sass preprocessor

parent 28bfff5f
Branches
No related merge requests found
...@@ -25,6 +25,7 @@ INSTALLED_APPS = ( ...@@ -25,6 +25,7 @@ INSTALLED_APPS = (
'import_members', 'import_members',
'squarepay', 'squarepay',
'formtools', 'formtools',
'sass_processor',
'bootstrap4', 'bootstrap4',
) )
...@@ -64,9 +65,16 @@ DATABASE_ROUTERS = ['import_members.db.MemberDbRouter'] ...@@ -64,9 +65,16 @@ DATABASE_ROUTERS = ['import_members.db.MemberDbRouter']
# Static files (CSS, JavaScript, Images) # Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.7/howto/static-files/ # 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 = [ STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'static'), os.path.join(BASE_DIR, 'static'),
] ]
STATIC_URL = '/media/' STATIC_URL = '/media/'
STATIC_ROOT = os.path.join(ROOT_DIR, '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