mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
21 lines
379 B
Markdown
21 lines
379 B
Markdown
|
# `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
|
||
|
// next.config.js
|
||
|
module.exports = {
|
||
|
crossOrigin: 'anonymous'
|
||
|
}
|
||
|
```
|
||
|
|
||
|
### Useful Links
|
||
|
|
||
|
- [The issue this was reported in: #5674](https://github.com/zeit/next.js/issues/5674)
|