// Logic that runs globally and before the application will be executed here import dayjs from 'dayjs'; import localizedFormat from 'dayjs/plugin/localizedFormat'; import relativeTime from 'dayjs/plugin/relativeTime'; import timezone from 'dayjs/plugin/timezone'; import utc from 'dayjs/plugin/utc'; dayjs.extend(localizedFormat); dayjs.extend(utc); dayjs.extend(timezone); dayjs.extend(relativeTime);