From 6b4719d5159efa0ee6d8c070c92bd31d5bb35113 Mon Sep 17 00:00:00 2001 From: Sergey Shorokhov Date: Sun, 10 Nov 2024 00:23:47 +0300 Subject: [PATCH] Update redirects --- docusaurus.config.ts | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 23391b2..9b8a67e 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -190,9 +190,32 @@ const config: Config = { "@docusaurus/plugin-client-redirects", { redirects: [ + // Social + { + to: "https://discord.gg/5wapsWtnF8", + from: ["/to/discord"], + }, { to: "https://github.com/rehlds", - from: ["/github"], + from: ["/to/github"], + }, + { + to: "https://t.me/ReHLDS_Community", + from: ["/to/telegram"], + }, + + // Resources + { + to: "https://github.com/rehlds/rehlds/releases/latest", + from: ["/get/rehlds"], + }, + { + to: "https://github.com/s1lentq/ReGameDLL_CS/releases/latest", + from: ["/get/regamedll_cs"], + }, + { + to: "https://github.com/rehlds/metamod-r/releases/latest", + from: ["/get/metamod-r", "/get/metamod"], }, ], },