1👍
✅
Follow these steps:
- You need to create a
static
directory in your project root. - Specify the static directory in the django project settings.
- Include the static files like css, js, image, fonts inside the
static
directory. - Change the static file’s path in templates — e.g. from
/css/bootstrap.min.css
to{% static "css/bootstrap.min.css" %}
Source:stackexchange.com