forked from DGNum/gestioCOF
726b3f55a0
This is a much more sensible name since it contains configuration applicable to both GestioCOF and GestioBDS. The next logical step would be to rename the `gestioncof/` folder to `cof/`.
5 lines
186 B
Python
5 lines
186 B
Python
from django.contrib.staticfiles.apps import StaticFilesConfig
|
|
|
|
|
|
class IgnoreSrcStaticFilesConfig(StaticFilesConfig):
|
|
ignore_patterns = StaticFilesConfig.ignore_patterns + ["src/**"]
|