I am relatively new to web dev. and I am trying to build my first web application. I have my static folder in project_root/static but for some reason, I keep getting 404s when I run the server:
Not Found: /users/login/js/bootstrap.min.js for example.
I have {% load staticfiles %} at the top of my html and in my settings.py I have:
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
Thanks.
EDIT: Fixed with a combination of the answers below. Thank you all!