mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
14 lines
366 B
JavaScript
14 lines
366 B
JavaScript
// 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',
|
|
},
|
|
}
|