From cdbba1578bca3ead7d4b732e2d35c870677b3f7d Mon Sep 17 00:00:00 2001 From: Davidzdh <30859354+Guanchishan@users.noreply.github.com> Date: Fri, 11 Oct 2024 20:37:20 +0900 Subject: [PATCH] Update .env.example Added STATIC_ROOT=static/ to .env.example file. This change is necessary to ensure that the static files, such as CSS, load correctly in both logged-in and logged-out states. Previously, the lack of this configuration could lead to missing or broken CSS, affecting the website's usability. --- .env.example | 1 + 1 file changed, 1 insertion(+) diff --git a/.env.example b/.env.example index c61ceba1e8..bd384ee78d 100644 --- a/.env.example +++ b/.env.example @@ -21,6 +21,7 @@ DEFAULT_LANGUAGE="English" # Probably only necessary in development. # PORT=1333 +STATIC_ROOT=static/ MEDIA_ROOT=images/ # Database configuration