Nombres del mes
Locale#months debe ser un arreglo con los nombres de los meses.
  Esto requiere el
  
    UpdateLocale
  
  plugin para trabajar 
  
dayjs.extend(updateLocale)
dayjs.updateLocale('en', {
  months: [
    "January", "February", "March", "April", "May", "June", "July",
    "August", "September", "October", "November", "December"
  ]
})
Procesamiento adicional de token
Si necesita más procesamiento para calcular el nombre del mes, (por ejemplo, si hay diferentes gramáticas para diferentes formatos), Locale#meses puede ser una función con la siguiente firma. Siempre debe devolver un mes de nombre.
dayjs.updateLocale("en", {
  months: function (dayjsInstance, format) {
    // dayjsInstance is the Day.js object currently being formatted
    // format is the formatting string
    if (/^MMMM/.test(format)) {
      // if the format starts with 'MMMM'
      return monthShortFormat[dayjsInstance.month()];
    } else {
      return monthShortStandalone[dayjsInstance.month()];
    }
  },
});
