Hello everyone,
I am wondering whether there is a difference between the following two statements in a Django settings.py
STATIC_ROOT = 'static/' # this is what Django creates by default in a new settings.py file
and
STATIC_ROOT = '/static/' # this is what PA recommends
Thank you,