From a94f35800a6d6af52c46c71d8991c79e4a054e58 Mon Sep 17 00:00:00 2001 From: Andrey Avtomonov Date: Wed, 27 May 2026 18:20:51 +0200 Subject: [PATCH] feat(docs-site): redirect ktx.sh/slack to Slack community invite (#224) Add a host-scoped redirect for /slack on ktx.sh before the existing catch-all so the path resolves to the community invite link instead of docs.kaelio.com/ktx/slack. --- docs-site/next.config.mjs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs-site/next.config.mjs b/docs-site/next.config.mjs index 30a96741..b82803be 100644 --- a/docs-site/next.config.mjs +++ b/docs-site/next.config.mjs @@ -34,6 +34,14 @@ const config = { permanent: true, basePath: false, }, + { + source: "/slack", + has: [{ type: "host", value: "ktx.sh" }], + destination: + "https://join.slack.com/t/ktxcommunity/shared_invite/zt-3y9b44m1x-LVyNNJD5nwaZHq4XS29LMQ", + permanent: false, + basePath: false, + }, { source: "/:path*", has: [{ type: "host", value: "ktx.sh" }],