fix: Correct STATIC_URL with leading slash and mount static_volume shared between backend and nginx

This commit is contained in:
Richard
2026-07-31 11:46:44 +02:00
parent 896dfda240
commit ba172d321f
4 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -126,7 +126,7 @@ TIME_ZONE = 'Europe/Berlin'
USE_I18N = True
USE_TZ = True
STATIC_URL = 'static/'
STATIC_URL = '/static/'
STATIC_ROOT = BASE_DIR / 'staticfiles'
STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'