Remove sass directory from static files
This commit is contained in:
parent
f249af08b7
commit
220333fdbe
2 changed files with 12 additions and 2 deletions
10
khaganat/apps.py
Normal file
10
khaganat/apps.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
from django.contrib.staticfiles.apps import StaticFilesConfig
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class KhaganatConfig(AppConfig):
|
||||
name = 'khaganat'
|
||||
|
||||
|
||||
class KhaganatStaticFilesConfig(StaticFilesConfig):
|
||||
ignore_patterns = ['CVS', '.*', '*~', 'sass']
|
|
@ -40,8 +40,8 @@ INSTALLED_APPS = [
|
|||
'django.contrib.contenttypes',
|
||||
'django.contrib.sessions',
|
||||
'django.contrib.messages',
|
||||
'django.contrib.staticfiles',
|
||||
'khaganat',
|
||||
'khaganat.apps.KhaganatConfig',
|
||||
'khaganat.apps.KhaganatStaticFilesConfig',
|
||||
'neluser.apps.NeluserConfig',
|
||||
'pages.apps.PagesConfig',
|
||||
'navbar.apps.NavbarConfig',
|
||||
|
|
Loading…
Reference in a new issue