How to Solve NameError: name 'ManifestStaticFilesStorage' is not defined -- django

Erorr: name 'ManifestStaticFilesStorage' is not defined

NameError: name 'ManifestStaticFilesStorage' is not defined

Solution: Import the 'ManifestStaticFilesStorage' module

# Add the following line to the top of your code
from django.contrib.staticfiles.storage import ManifestStaticFilesStorage

 

For more information:
django ManifestStaticFilesStorage