6👍
✅
Oscar ships its own set of static files in oscar/static/oscar
When you deploy your site, you should run manage.py collectstatic
so these files are also collected in your STATIC_ROOT
On DigitalOcean’s Django app, your Nginx configuration is located in /etc/nginx/sites-enabled/django
You may need to update the following section to point to the location of your STATIC_ROOT
# your Django project's static files - amend as required
location /static {
alias /home/django/django_project/django_project/static;
}
Source:stackexchange.com