Open wolfred24 opened 9 months ago
Django doesn't serve static files in production mode (DEBUG = False) so you need to serve them yourself.
To do it you need either a webserver like Nginx/Apache have them server the /static/ folder and proxy the remaining to django or use whitenoise to serve your static css file.
Hi guys,
I'm having an annoyng issue, i had deployed my django app in to a server, then i changed from
DEBUG = True
toDEBUG = False
in thesettings.py
file, And magically no styles load at my app. The issue is that my web app is now displaying pure html without any style. And this only happens when i set theDEBUG = False
config.I already tried:
Nothing is working to solve this issue, and the terminal log doesnt show any error.
python3 manage.py tailwind start
python3 manage.py tailwind build
This is how my webpage looks: