Django - The included urlconf doesn't have any patterns in it
- by unsorted
My website, which was working before, suddenly started breaking with the error
"ImproperlyConfigured at /
The included urlconf resume.urls doesn't have any patterns in it"
The project base is called resume. In settings.py I have set
ROOT_URLCONF = 'resume.urls'
Here's my resume.urls, which sits in the project root directory.
from…