/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
test-config-errors/next.config.js
13 строк
366 B
Jiachi Liu
improve next config schema validation errors (#84847)
14 окт 2025, 18:45
Не верифицирован
14 окт 2025, 18:45
2782167
Код
Авторство
О чём код?
// 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', }, }