1

add e11sync-caddy

This commit is contained in:
2024-01-15 11:57:36 +02:00
parent 9870e5c239
commit c3d052ad01
5 changed files with 56 additions and 4 deletions

View File

@@ -38,7 +38,7 @@ SECRET_KEY = _SECRET_KEY
DEBUG = _DEBUG
ALLOWED_HOSTS = ["127.0.0.1"]
ALLOWED_HOSTS = ["127.0.0.1", "localhost"]
INTERNAL_IPS = ["127.0.0.1"]
@@ -140,7 +140,7 @@ COMPRESS_FILTERS = {
}
COMPRESS_PRECOMPILERS = (
('text/x-scss', 'sass {infile} {outfile}'),
('text/x-scss', 'sass --no-source-map {infile} {outfile}'),
)
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'