I run the following 3 commands after I deploy my app in production:
php bin/console cache:warmup --env=prod
php bin/console assetic:dump --env=prod --no-debug
php bin/console cache:clear --env=prod --no-debug --no-warmup
The latter one outputs the following:
However in browser nothing loads up:
Also, this is what the css folder looks like:
What could be the problem?



clear cache first before assetic dump:
php bin/console cache:warmup --env=prod php bin/console cache:clear --env=prod --no-debug --no-warmup php bin/console assetic:dump --env=prod --no-debug