summaryrefslogtreecommitdiff
path: root/docusaurus.config.js
diff options
context:
space:
mode:
authorLyssa2025-12-23 10:31:24 +0000
committerLyssa2025-12-23 10:31:24 +0000
commit05a87e2acf6af208ebbf2ef8a4133b04f59b86b2 (patch)
tree031e9e035f721dc73170f5bdcdc110b72fba0c8c /docusaurus.config.js
parent2f44fc29d9e089e570d5c3268363dab09c3fc5d3 (diff)
downloadmassgrave.dev-05a87e2acf6af208ebbf2ef8a4133b04f59b86b2.zip
Fix redirects, thanks Magic for config i couldnt be bothered to do it myself
Diffstat (limited to 'docusaurus.config.js')
-rw-r--r--docusaurus.config.js62
1 files changed, 62 insertions, 0 deletions
diff --git a/docusaurus.config.js b/docusaurus.config.js
index e9e6512..d513faa 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -70,6 +70,68 @@ const config = {
],
],
+ plugins: [
+ [
+ '@docusaurus/plugin-client-redirects',
+ {
+ redirects: [
+ {
+ from: '/get',
+ to: 'https://massgrave.dev/get.ps1',
+ },
+ {
+ from: '/redirect-genuine-installation-media',
+ to: '/genuine-installation-media',
+ },
+ {
+ from: ['/change_edition', '/change_edition.html'],
+ to: '/change_windows_edition',
+ },
+ {
+ from: '/in-place_repair_upgrade',
+ to: 'https://gravesoft.dev/in-place_repair_upgrade',
+ },
+ {
+ from: '/bypass-russian-geoblock',
+ to: 'https://gravesoft.dev/bypass-russian-geoblock',
+ },
+ {
+ from: '/fix-wpa-registry',
+ to: 'https://gravesoft.dev/fix-wpa-registry',
+ },
+ {
+ from: '/office_c2r_links',
+ to: 'https://gravesoft.dev/office_c2r_links',
+ },
+ {
+ from: '/office_c2r_custom',
+ to: 'https://gravesoft.dev/office_c2r_custom',
+ },
+ {
+ from: '/fix_powershell',
+ to: 'https://gravesoft.dev/fix_powershell',
+ },
+ {
+ from: '/remove_malware',
+ to: 'https://gravesoft.dev/remove_malware',
+ },
+ {
+ from: '/clean_install_windows',
+ to: 'https://gravesoft.dev/clean_install_windows',
+ },
+ {
+ from: '/msdl',
+ to: 'https://msdl.gravesoft.dev/',
+ },
+ {
+ from: '/api/msdl/proxy',
+ to: 'https://msdl.gravesoft.dev/',
+ },
+ ],
+ },
+ ],
+ ],
+
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({