-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Page navigation not working in docs properly #4097
Comments
🤖 Hey @Athesh007! Good to see you back. Hope you're coding away happily! 🚀 The issue you're experiencing with the next page navigation in the documentation leading to the same page instead of the next one is likely due to the structure of the In Docusaurus, which is the framework used for the LangChainJS documentation, the order of the items in the sidebar determines the next and previous page navigation. If the items are not ordered correctly or if there are missing items, the navigation might not work as expected. The However, if there are missing files in the directory or if the files are not named in the order you want them to appear in the sidebar, the next/previous navigation might not work correctly. To fix this issue, you should check the filesystem structure and the order of the files in the directories specified in the If the issue persists, you might need to explicitly define the items in the sidebar instead of using Here is an example of how to explicitly define the items: items: [
"doc1",
"doc2",
"doc3",
// ...
], In this example, You can find more information about the sidebar configuration in the Docusaurus documentation. I hope this helps! If you have any other questions or need further clarification, please let me know. Best, SourcesThis response is meant to be useful and save you time. It is not meant to be a precise solution, but rather a starting point for your own research. Help me be more useful! Please leave a 👍 if this is helpful and 👎 if it is irrelevant. If you want to continue the conversation, start your reply with @dosu-bot. |
Next page navigation leads to the same page.
[link:] (https://js.langchain.com/docs/modules/model_io/)
The text was updated successfully, but these errors were encountered: