Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 278 Bytes

invalid-assetprefix.md

File metadata and controls

17 lines (11 loc) · 278 Bytes

Invalid assetPrefix

Why This Error Occurred

The value of assetPrefix in next.config.js is set to something that is not a string.

Possible Ways to Fix It

Ensure that assetPrefix is a string.

Example:

module.exports = {
  assetPrefix: '/',
}