Next.JS usa babel para configurar Why Did You Render.
module.exports = function (api) { const isServer = api.caller((caller) => caller?.isServer) const isCallerDevelopment = api.caller((caller) => caller?.isDev) const presets = [ [ 'next/babel', { 'preset-react': { importSource: !isServer && isCallerDevelopment ? '@welldone-software/why-did-you-render' : 'react' } } ] ] return {presets} }¿Cómo se puede actualizar esto a Next.JS 12 sin deshabilitar SWC?