I\'m trying to serve static files through WhiteNoise as per Heroku\'s recommendation. When I run collectstatic in my development environment, this happens:
In my case there was another solution. In Heroku config I had a setting:
DISABLE_COLLECTSTATIC=0
which should let Heroku collect static automaticly by pushing to heroku master, but it didn`t!.
What I did was removing this setting on
Heroku > my_app > settings > config vars
and after that Heroku collected staticfiles automaticly and problem dissappeard.