2020-12-10 You may need to update application code to resolve this error.

...
You may need to update application code to resolve this error.
Or, you can disable collectstatic for this application:
$ heroku config:set DISABLE_COLLECTSTATIC=1
...

lupa nambahkan Static root

jangan mendisable atau menghilangkan log error seperti ini

$ heroku config:set DISABLE_COLLECTSTATIC=1

karena hanya akan menghilangkan pesan error saja

Referensi:

solusi:

tambahkan variabel STATIC_ROOT pada settings.py

STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')

Last updated

Was this helpful?