File size: 400 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: '`Head` or `NextScript` attribute `crossOrigin` is deprecated'
---
## Why This Error Occurred
This option has been moved to `next.config.js`.
## Possible Ways to Fix It
Add the config option:
```js filename="next.config.js"
module.exports = {
crossOrigin: 'anonymous',
}
```
## Useful Links
- [The issue this was reported in: #5674](https://github.com/vercel/next.js/issues/5674)
|