Si al levantar el entorno de desarrollo les sale el error ValidationError: Invalid options object. Watch Ignore Plugin has been initialized using an options object that does not match the API schema.
, deben modificar el archivo next.config.js de esta forma:
// ...
module.exports = {
...,
webpack: (config, { webpack }) => {
// ...
// antes
// config.plugins.push(new webpack.WatchIgnorePlugin([[/\/content\//]]));
// ahora
config.plugins.push(new webpack.WatchIgnorePlugin({ paths: [/\/content\//] }));
return config;
}
};
Todo está en la forma en cómo instanciamos WatchIgnorePlugin
. Más info aquí.
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?