Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 382 Bytes

doc-crossorigin-deprecated.md

File metadata and controls

20 lines (13 loc) · 382 Bytes

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:

// next.config.js
module.exports = {
  crossOrigin: 'anonymous',
}

Useful Links