Missing “#app-manifest” specifier in “nuxt” package

Hello, I’m currently running into this issue while starting a Nuxt project: I have just attached an image for reference. Has anyone experienced it before?
No description
2 Replies
kapa.ai
kapa.ai6d ago
Hi @laurent2225. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave: ---------------------- Based on the information provided in the knowledge sources, I can offer some insights into your issue with the missing "#app-manifest" specifier in the "nuxt" package. This error is likely related to the appManifest experimental feature in Nuxt. The appManifest feature is used to respect route rules on the client-side and is enabled by default in recent versions of Nuxt. To resolve this issue, you have a couple of options: 1. Disable the appManifest feature: You can disable this feature by adding the following to your nuxt.config.ts file:
export default defineNuxtConfig({
experimental: {
appManifest: false
}
})

export default defineNuxtConfig({
experimental: {
appManifest: false
}
})

This solution was mentioned in a GitHub issue comment here. 2. Update your Nuxt version: If you're using an older version of Nuxt, updating to the latest version might resolve this issue, as the appManifest feature has been improved in recent releases. 3. Check your package.json: Ensure that your package.json file includes the necessary Nuxt dependencies. A minimal package.json for a Nuxt application should look similar to this:
{
"dependencies": {
"nuxt": "latest",
"vue": "latest",
"vue-router": "latest"
}
}

{
"dependencies": {
"nuxt": "latest",
"vue": "latest",
"vue-router": "latest"
}
}

This information is based on the Nuxt documentation on package.json. If the issue persists after trying these solutions, it might be worth checking your project's overall setup and ensuring all dependencies are correctly installed and up to date. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
kapa.ai
kapa.ai6d ago
<@553876447429656586> Kapa.ai is still learning and improving, please let me know how I did by reacting below.

Did you find this page helpful?