We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cd90d8 commit b352b5aCopy full SHA for b352b5a
docusaurus.config.js
@@ -37,12 +37,18 @@ const config = {
37
[
38
"@docusaurus/plugin-client-redirects",
39
{
40
+ fromExtensions: ["html", "htm"], // /myPage.html -> /myPage
41
+ toExtensions: [], // No specific file extensions
42
redirects: [
43
+ // Redirect from old Lido page to the overview page
44
- from: "/docs/user/staking/ethereum/lsd-pools/lido/",
45
to: "/docs/user/staking/ethereum/lsd-pools/lido/overview",
46
+ from: "/docs/user/staking/ethereum/lsd-pools/lido/",
47
},
48
],
49
+ createRedirects(existingPath) {
50
+ return undefined; // No additional redirects created
51
+ },
52
53
54
0 commit comments