Open jmcoursi opened 6 years ago
In settings.py, STATIC_ROOT = os.path.join(ROOT_PATH, '/static-files'), remove the leading slash, since otherwise os.path.join just returns /static-files.
Found the same issue. This solution works great.
In settings.py, STATIC_ROOT = os.path.join(ROOT_PATH, '/static-files'), remove the leading slash, since otherwise os.path.join just returns /static-files.