Skip to content

Commit cbdd248

Browse files
authored
fix: redirect v2 (#2101)
* fix: redirects * fix: redirects
1 parent 8fba09a commit cbdd248

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docusaurus.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ const config: Config = {
216216
}
217217
],
218218
createRedirects(existingPath) {
219-
if (existingPath?.includes('/guides/community/rfcs/')) {
220-
return existingPath.replace('/guides/community/rfcs/', '/developer/community/rfcs/');
219+
if (existingPath?.includes('/developer/community/rfcs/')) {
220+
return existingPath.replace('/developer/community/rfcs/', '/guides/community/rfcs/');
221221
}
222222
return undefined;
223223
}

0 commit comments

Comments
 (0)