I need to use Devanagari calender in the full calender instead of English calender in FullCalender.
I need to use Devanagari calender in the full calender instead of English calender in FullCalender.
According to the documentation, you can. You can even try and set the locale to 'hi' in the live demo.
To set the locale to Hindi in your project (to my knowledge, Hindi uses Devanagari writting):
import { Calendar } from '@fullcalendar/core';
import hiLocale from '@fullcalendar/core/locales/hi';
...
let calendar = new Calendar(calendarEl, {
locale: hiLocale
});