File size: 476 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
title: Cannot output to /public
---

## Why This Error Occurred

Either you set `distDir` to `public` in your `next.config.js` or during `next export` you tried to export to the `public` directory.

This is not allowed because `public` is used by Next.js to serve static assets.

## Possible Ways to Fix It

Use a different `distDir` or export to a different folder.

## Useful Links

- [Static file serving docs](/docs/pages/api-reference/file-conventions/public-folder)