From 7837c4597e86f9a743f216881198df4cb5a68f60 Mon Sep 17 00:00:00 2001 From: Arista Indrajaya Date: Mon, 18 Mar 2024 15:56:05 +0700 Subject: [PATCH] docs: redirect the broken link to the new docs structure links --- docs/docusaurus.config.js | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 4e7e91baf..1d2a19d38 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -67,43 +67,43 @@ const config = { redirects: [ { from: '/troubleshooting/failed-to-fetch', - to: '/guides/error-codes/something-amiss/', + to: '/troubleshooting/', }, { from: '/guides/troubleshooting/gpu-not-used/', - to: '/guides/common-error/not-using-gpu/', + to: '/troubleshooting/', }, { from: '/guides/troubleshooting/', - to: '/guides/error-codes/', + to: '/troubleshooting/', }, { from: '/troubleshooting/stuck-on-broken-build/', - to: '/guides/common-error/broken-build/', + to: '/troubleshooting/', }, { from: '/guides/troubleshooting/', - to: '/guides/error-codes/', + to: '/troubleshooting/', }, { from: '/troubleshooting/somethings-amiss/', - to: '/guides/error-codes/something-amiss/', + to: '/troubleshooting/', }, { from: '/troubleshooting/how-to-get-error-logs/', - to: '/guides/error-codes/how-to-get-error-logs/', + to: '/troubleshooting/', }, { from: '/troubleshooting/permission-denied/', - to: '/guides/error-codes/permission-denied/', + to: '/troubleshooting/', }, { from: '/troubleshooting/unexpected-token/', - to: '/guides/error-codes/unexpected-token/', + to: '/troubleshooting/', }, { from: '/troubleshooting/undefined-issue/', - to: '/guides/error-codes/undefined-issue/', + to: '/troubleshooting/', }, { from: '/install/', @@ -111,11 +111,11 @@ const config = { }, { from: '/guides/using-models/', - to: '/guides/models-setup/', + to: '/guides/models/', }, { from: '/guides/using-extensions/', - to: '/guides/extensions/', + to: '/extensions/', }, ], },