cardinalitypuzzles / cardboard

Dashboard for managing puzzles and tracking status during a puzzle hunt
MIT License
31 stars 21 forks source link

ValueError: Missing staticfiles manifest entry for 'favicon.ico' #712

Closed akirabaruah closed 6 months ago

akirabaruah commented 6 months ago

Something is borked with Whitenoise manifest files. The current workaround is to disable strict manifest checking by adding this to the Django settings file:

WHITENOISE_MANIFEST_STRICT = False

Docs: https://whitenoise.readthedocs.io/en/stable/django.html#why-do-i-get-valueerror-missing-staticfiles-manifest-entry-for

akirabaruah commented 6 months ago

See https://github.com/cardinalitypuzzles/cardboard/pull/711 for the workaround.

akirabaruah commented 6 months ago

As a shot in the dark, I tried updating whitenoise from 6.3.0 to 6.6.0 but that didn't fix the issue.