You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that using LLM coding agents doesn't work very well with Nuxt v3 since it is slightly too new to be baked in and examples are still rare.
It would help a ton if all of the documentation would be available on one single page which could then be fed to the LLM. Ideally without any fancy js etc to load additional content.
The request would therefore be to compile an extra page into the documentation that includes all the content in a single page.
Additional information
Would you be willing to help implement this feature?
I quickly accomplished this using a few terminal commands. The Nuxt documentation, available in Markdown format on nuxt/docs, can be combined into a single file.
To do this, list all the Markdown files in the docs directory by running the command: find . -name "*.md"
And then concatenate them into one file named complete-nuxt-docs.md by using cat $(find . -name "*.md") > complete-nuxt-docs.md.
Describe the feature
I noticed that using LLM coding agents doesn't work very well with Nuxt v3 since it is slightly too new to be baked in and examples are still rare.
It would help a ton if all of the documentation would be available on one single page which could then be fed to the LLM. Ideally without any fancy js etc to load additional content.
The request would therefore be to compile an extra page into the documentation that includes all the content in a single page.
Additional information
Final checks
The text was updated successfully, but these errors were encountered: