Skip to content

Commit 37eebc0

Browse files
authored
fix: Redirect iceberg (#1986)
* fix: redirect * fix: redirect
1 parent c731b24 commit 37eebc0

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

docusaurus.config.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,18 @@ const config: Config = {
209209
{
210210
from: '/',
211211
to: '/guides/'
212+
},
213+
{
214+
from: '/sql/sql-reference/table-engines/iceberg',
215+
to: '/guides/access-data-lake/iceberg/'
216+
}
217+
],
218+
createRedirects(existingPath) {
219+
if (existingPath.startsWith('/guides/community/rfcs/')) {
220+
return existingPath.replace('/guides/community/rfcs/', '/developer/community/rfcs/');
212221
}
213-
]
222+
return undefined;
223+
}
214224
}
215225

216226
]

0 commit comments

Comments
 (0)