11 lines
257 B
Python
11 lines
257 B
Python
|
from django.contrib.staticfiles.apps import StaticFilesConfig
|
||
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class KhaganatConfig(AppConfig):
|
||
|
name = 'khaganat'
|
||
|
|
||
|
|
||
|
class KhaganatStaticFilesConfig(StaticFilesConfig):
|
||
|
ignore_patterns = ['CVS', '.*', '*~', 'sass']
|