1
0
Fork 0
mirror of https://github.com/skidoodle/albert.lol.git synced 2025-02-15 06:09:15 +01:00
This commit is contained in:
skidoodle 2022-04-26 00:50:56 +02:00
parent 1a2aa9f678
commit 2d726ddfe3
6 changed files with 115 additions and 2013 deletions
components

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 }