I\'m hosting my Django application on Heroku and using whitenoise to handle serving static files.
Following is con
Got the solution from a post
Added collectstatic to Procfile
collectstatic
web: python manage.py collectstatic --no-input; gunicorn myapp.wsgi --log-file - --log-level debug
And now every static file is serving including, CSS, js, images and videos.