diff --git a/docs/src/reference/settings.md b/docs/src/reference/settings.md index e65dd203..23760919 100644 --- a/docs/src/reference/settings.md +++ b/docs/src/reference/settings.md @@ -117,7 +117,7 @@ We recommend using [`redis`](https://docs.djangoproject.com/en/stable/topics/cac Configures whether ReactPy components are rendered in a dedicated thread. -This allows the web server to process other traffic during ReactPy rendering. Vastly improves throughput with web servers such as [`hypercorn`](https://pgjones.gitlab.io/hypercorn/) and [`uvicorn`](https://www.uvicorn.org/). +This allows the web server to process other traffic during ReactPy rendering. Vastly improves throughput with web servers such as [`hypercorn`](https://github.com/pgjones/hypercorn) and [`uvicorn`](https://www.uvicorn.org/). This setting is incompatible with [`daphne`](https://github.com/django/daphne). diff --git a/pyproject.toml b/pyproject.toml index b786883b..f1b1794f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -162,7 +162,7 @@ dependencies = [ serve = ["cd docs && mkdocs serve"] build = ["cd docs && mkdocs build --strict"] linkcheck = [ - "linkcheckMarkdown docs/ -v -r", + "linkcheckMarkdown docs/ -v -r --method head", "linkcheckMarkdown README.md -v -r", "linkcheckMarkdown CHANGELOG.md -v -r", ]