[Django]-Django ValueError: Missing staticfiles manifest entry for 'inline.bundle.js' runserver

3👍

debug = false and STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage' == CRASH

debug = false and STATICFILES_STORAGE = 'whitenoise.storage.CompressedStaticFilesStorage' == 200_ok

Also, be sure and update to whitenoise v4+ and read the docs. It is not backwards-compatible with older versions or settings!

Leave a comment