Skip to content

Commit fe5061b

Browse files
author
Dimitri POSTOLOV
authoredOct 8, 2023
[v3] fix for remote docs (#2405)

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed
 

‎.changeset/late-wasps-judge.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'nextra-theme-docs': patch
3+
'nextra': patch
4+
---
5+
6+
fix for remote docs

‎packages/nextra/src/client/setup-page.tsx

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* This file should be never used directly, only in loader.ts
44
*/
55

6-
import { useRouter } from 'next/router'
76
import type { ReactElement, ReactNode } from 'react'
87
import { NEXTRA_INTERNAL } from '../constants.js'
98
import { normalizePageRoute, pageTitleFromFilename } from '../server/utils.js'
@@ -21,6 +20,7 @@ import type {
2120
PageOpts
2221
} from '../types'
2322
import { DataProvider } from './data.js'
23+
import { useRouter } from './hooks/index.js'
2424
import { useMDXComponents } from './mdx.js'
2525

2626
function isFolder(value: DynamicMetaItem): value is DynamicFolder {
@@ -152,7 +152,7 @@ export function HOC_MDXWrapper(
152152
NEXTRA_INTERNAL
153153
]
154154
const { Layout, themeConfig } = __nextra_internal__
155-
const { route } = useRouter()
155+
const { route, locale } = useRouter()
156156

157157
const pageContext = __nextra_internal__.context[route]
158158

@@ -165,8 +165,7 @@ export function HOC_MDXWrapper(
165165
let { pageOpts } = pageContext
166166

167167
for (const { route, children } of __nextra_pageMap) {
168-
// TODO 2 for locale, 1 without local
169-
const paths = route.split('/').slice(2)
168+
const paths = route.split('/').slice(locale ? 2 : 1)
170169
const folder = findFolder(pageOpts.pageMap, paths)
171170
folder.children = children
172171
}

0 commit comments

Comments
 (0)
Please sign in to comment.