Fixes: 1) Correct invalid URL in DAISY_SETTINGS for EXTRA_STYLES path.

This commit is contained in:
Egor Pavlovich Gorbunov 2025-06-21 19:11:46 +03:00
parent 82a79c31f9
commit 29f8be5624

View file

@ -5,7 +5,7 @@ from evibes.settings import CONSTANCE_CONFIG
DAISY_SETTINGS: dict = {
"SITE_LOGO": "/static/favicon.ico",
"EXTRA_STYLES": [
f"https://api.{CONSTANCE_CONFIG.get('BASE_DOMAIN')[0]}/static/core/css/constance.css",
f"https://api.{CONSTANCE_CONFIG.get('BASE_DOMAIN')[0]}/static/css/constance.css",
],
"EXTRA_SCRIPTS": [],
"SHOW_CHANGELIST_FILTER": True,