File size: 366 Bytes
b91e262 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | // Test config with both warnings (unknown keys) and hard errors (images config error)
module.exports = {
// This should be a warning - unknown experimental key
experimental: {
unknownExperimentalOption: true,
anotherUnknownOption: 'test',
},
// This should be a hard error - invalid images config
images: {
invalidOption: 'bad value',
},
}
|