15 lines
456 B
Python
15 lines
456 B
Python
from .base import *
|
|
|
|
DEBUG = False
|
|
|
|
# ManifestStaticFilesStorage is recommended in production, to prevent
|
|
# outdated JavaScript / CSS assets being served from cache
|
|
# (e.g. after a Wagtail upgrade).
|
|
# See https://docs.djangoproject.com/en/6.0/ref/contrib/staticfiles/#manifeststaticfilesstorage
|
|
STORAGES["staticfiles"]["BACKEND"] = "django.contrib.staticfiles.storage.ManifestStaticFilesStorage"
|
|
|
|
try:
|
|
from .local import *
|
|
except ImportError:
|
|
pass
|