#Get a build manifest
3 messages · Page 1 of 1 (latest)
Hi @small bison. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
I'm sorry, but the knowledge sources do not provide explicit instructions or documentation on how to generate a clean JSON build manifest from Nuxt's generated files for import into another project.
However, there are some related details:
- Nuxt internally generates a manifest file (such as
manifest.jsonormeta.json) in the build output, for example at/.nuxt/dist/client/manifest.jsonor/_nuxt/builds/meta.json, which is used for internal purposes like route rules and payload loading. These files are not documented as public APIs and their structure may change between versions, so relying on them for external use is not officially supported or documented in the sources provided fix(nuxt): experimental build manifest + client route rules. - There are PRs and discussions about preloading and handling the app manifest, but they focus on Nuxt's internal usage and do not describe a user-facing way to export or customize the manifest for external consumption perf(nuxt): preload app manifest.
If you need a manifest of your generated files, you may need to write a custom script to scan the output directory (such as .output/public/ for static builds or .nuxt/dist/client/ for client assets) and generate your own JSON manifest. The knowledge sources do not provide a built-in Nuxt feature for this use case.