Files
vercel__next.js/errors/experimental-app-dir-config.mdx
Delba de Oliveira 2e2ee08b60 Docs IA 2.0: Delete routing section, add BFF guide, polish getting started (#80365)
Closes:
https://linear.app/vercel/issue/DOC-4686/clean-up-routing-section
Redirects: https://github.com/vercel/front/pull/47151

---------

Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
2025-06-16 13:42:20 +01:00

30 lines
827 B
Plaintext

---
title: 'Experimental `appDir: true`'
---
## Why This Error Occurred
Your project contains a directory named `app/`. Since Next.js 13, this is a [reserved name](/blog/next-13#new-app-directory-beta).
## Possible Ways to Fix It
To use the new app directory and its features, please add `appDir: true` to your configuration in `next.config.js` under `experimental`.
```js filename="next.config.js"
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
appDir: true,
},
}
module.exports = nextConfig
```
If you do not want to use the new `app/` directory features yet, but have a directory named `app/`, rename the directory to something else.
## Useful Links
- [Next.js 13 App directory](/blog/next-13#new-app-directory-beta)
- [App directory documentation](/docs/app/getting-started)