This commit is contained in:
skidoodle 2022-05-01 22:50:31 +02:00
commit b9dc57578a
26 changed files with 2590 additions and 0 deletions

9
components/dayjs.ts Normal file
View file

@ -0,0 +1,9 @@
import dayjs from 'dayjs'
import utc from 'dayjs/plugin/utc'
import timezone from 'dayjs/plugin/timezone'
dayjs.extend(utc)
dayjs.extend(timezone)
dayjs.tz.setDefault('Europe/Budapest')
export { dayjs }