Hello,
My error is often reported one :
File "/home/achandol/.virtualenvs/env_garagesale/lib/python3.10/site-packages/django/contrib/staticfiles/storage.py", line 516, in stored_name raise
ValueError(
**ValueError: Missing staticfiles manifest entry for '/css/styles.css'**
I have searched for my issue in the forum and followed the steps on this page: https://help.pythonanywhere.com/pages/DjangoStaticFiles/
I have checked that I can access my css by going to https://achandol.pythonanywhere.com/static/css/styles.css
In the Web app setup, I have:
URL: /static/
Directory: /home/achandol/achandol.pythonanywhere.com/static
My settings.py has the following:
BASE_DIR = "/home/achandol/achandol.pythonanywhere.com"
STATIC_ROOT = os.path.join(BASE_DIR , 'static')
STATIC_URL = '/static/'
I also see that everything is in lower case. I also tried clearing the browser history.
If someone can help me see what I am missing that would be great! I am sure I am missing something obvious.
Thank you!