We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83ec2b9 commit e0827daCopy full SHA for e0827da
1 file changed
web/react-router.config.ts
@@ -21,7 +21,8 @@ export default {
21
}
22
23
for await (const entry of glob("**/*.mdx", { cwd: "content/docs" })) {
24
- const slugs = getSlugs(entry);
+ const normalizedEntry = entry.replaceAll("\\", "/");
25
+ const slugs = getSlugs(normalizedEntry);
26
paths.push(getUrl(slugs), `/llms.mdx/docs/${[...slugs, "content.md"].join("/")}`);
27
28
0 commit comments