File size: 466 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
---
title: 'Detected `next.config.js`, no exported configuration found'
---
## Why This Warning Occurred
There is no object exported from next.config.js or the object is empty.
## Possible Ways to Fix It
Check if you correctly export configuration in `next.config.js` file:
```js filename="next.config.js"
module.exports = {
/* config options here */
}
```
## Useful Links
- [Introduction to next.config.js](/docs/pages/api-reference/config/next-config-js)
|