diff --git a/bookwyrm/urls.py b/bookwyrm/urls.py index cd75eb0c0..497692db6 100644 --- a/bookwyrm/urls.py +++ b/bookwyrm/urls.py @@ -835,6 +835,8 @@ urlpatterns = [ # Serves /static when DEBUG is true. urlpatterns.extend(staticfiles_urlpatterns()) +urlpatterns = [path("bookwyrm/", include(urlpatterns))] + # pylint: disable=invalid-name handler500 = "bookwyrm.views.server_error"