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 8f8c671 commit a462afcCopy full SHA for a462afc
docusaurus.config.js
@@ -227,6 +227,15 @@ const config = {
227
from: '/docs/3.11/scalardb-cluster-dotnet-client-sdk/overview',
228
},
229
],
230
+ createRedirects(existingPath) {
231
+ if (existingPath.includes('/ja-jp/docs')) {
232
+ // Redirect from /docs/ja-jp/X to /ja-jp/docs/X.
233
+ return [
234
+ existingPath.replace('/ja-jp/docs', '/docs/ja-jp'),
235
+ ];
236
+ }
237
+ return undefined; // Return a falsy value: no redirect created
238
+ },
239
240
241
require.resolve('docusaurus-plugin-image-zoom'),
0 commit comments