From 006dbffeff87c2800685c245165723e1a53d815a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ad=C3=A1mek?= Date: Thu, 16 Jan 2025 11:05:17 +0100 Subject: [PATCH] fix: remove trailing slash from internal URL (#1413) This fixes the lychee 404 errors. https://github.com/apify/apify-docs/actions/runs/12799427833 --- apify-docs-theme/src/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apify-docs-theme/src/config.js b/apify-docs-theme/src/config.js index f3c0e1a54..060786b9e 100644 --- a/apify-docs-theme/src/config.js +++ b/apify-docs-theme/src/config.js @@ -227,7 +227,7 @@ const themeConfig = ({ }, { label: 'Open source', - href: `${absoluteUrl}/open-source/`, // we need a trailing slash here, we'd get redirected there anyway + href: `${absoluteUrl}/open-source`, position: 'left', target: '_self', rel: 'dofollow',