next.js/test/production/config-validation-fatal-errors/next.config.js
next.config.js13 lines280 B
module.exports = {
  // This should be a warning - unknown experimental key
  experimental: {
    unknownExperimentalOption: true,
    anotherUnknownOption: 'test',
  },

  // This should be a fatal error - invalid images config
  images: {
    invalidOption: 'bad value',
  },
}
Quest for Codev2.0.0
/
SIGN IN