From d70b3a527168fba00cd63dbfbea05334b2007ff1 Mon Sep 17 00:00:00 2001 From: Kabilar Gunalan Date: Thu, 23 Jan 2025 10:28:56 -0600 Subject: [PATCH] Add `/handbook` redirect to `docs.dandiarchive.org` (#2151) Add redirect from `/handbook` to `https://docs.dandiarchive.org` --- web/netlify.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/netlify.toml b/web/netlify.toml index 620590fb5..20ec5c83b 100644 --- a/web/netlify.toml +++ b/web/netlify.toml @@ -30,12 +30,14 @@ VITE_APP_DANDI_API_ROOT = "https://api.dandiarchive.org/api/" VITE_APP_SENTRY_DSN = "https://425b9a012300493d867e97785fae7b88@o308436.ingest.sentry.io/5196549" VITE_APP_SENTRY_ENVIRONMENT = "production" +[[redirects]] +from = "/handbook" +to = "https://docs.dandiarchive.org" [[redirects]] from = "/*" to = "/index.html" status = 200 - [[plugins]] package = "/netlify/plugins/server-info-build"