rsnext/errors/static-dir-deprecated.mdx
Delba de Oliveira 44d1a1cb15
docs: Migrate error messages to MDX and App Router. (#52038)
This PR is part of a larger effort to migrate error messages to MDX and
use App Router: https://github.com/vercel/front/pull/23459
2023-07-05 06:11:16 -07:00

40 lines
857 B
Text

---
title: Static directory is deprecated
---
## Why This Error Occurred
In versions prior to 9.0.6 the `static` directory was used to serve static assets in a Next.js application. This has been deprecated in favor of a `public` directory.
The reason we want to support a `public` directory instead is to not require the `/static` prefix for assets anymore and there is no reason to maintain both paths.
## Possible Ways to Fix It
You can move your `static` directory inside of the `public` directory and all URLs will stay the same as they were before.
**Before**
```
static/
my-image.jpg
pages/
index.js
components/
my-image.js
```
**After**
```
public/
static/
my-image.jpg
pages/
index.js
components/
my-image.js
```
## Useful Links
- [Static file serving docs](/docs/pages/building-your-application/optimizing/static-assets)