---
title: "NUXT_E5001"
description: "App manifest is not enabled."
canonical_url: "https://nuxt.com/docs/4.x/errors/e5001"
---
# E5001

Code that relies on the app manifest ran while `experimental.appManifest` is disabled. The manifest powers features such as route rules matching and prerendered-payload detection on the client, so it must be enabled for them to work.

## Resolution

Enable the app manifest in your `nuxt.config`:

```ts
export default defineNuxtConfig({
  experimental: {
    appManifest: true,
  },
})
```

<read-more to="https://nuxt.com/docs/4.x/guide/going-further/experimental-features#appmanifest">



</read-more>


## Sitemap

See the full [sitemap](https://nuxt.com/sitemap.md) for all pages.
