We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e694156 commit 465f032Copy full SHA for 465f032
sitio-sveltekit/src/routes/+page.svelte
@@ -2,6 +2,10 @@
2
import { formatDuration, intervalToDuration, type Duration } from 'date-fns';
3
import { es } from 'date-fns/locale/es';
4
import dayjs from 'dayjs';
5
+ import utc from 'dayjs/plugin/utc';
6
+ import timezone from 'dayjs/plugin/timezone';
7
+ dayjs.extend(utc);
8
+ dayjs.extend(timezone);
9
import AIRPORTS from '$lib/aerolineas-airports.json';
10
import { Button } from '@/components/ui/button';
11
import type { Vuelo } from '$lib';
0 commit comments