Skip to content

Commit

Permalink
Merge pull request #14 from Peter-512/peterbuschenreiter/dx-31-try-isr
Browse files Browse the repository at this point in the history
minor setup changes
  • Loading branch information
Peter-512 authored Jan 18, 2024
2 parents 2387ffe + aea5acc commit a55181f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/routes/+layout.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script>
import '../app.postcss';
import '../app.pcss';
import Separator from '$lib/components/ui/separator/separator.svelte';
import { page } from '$app/stores';
import { setupViewTransition } from 'sveltekit-view-transition';
Expand Down
2 changes: 1 addition & 1 deletion src/routes/+layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ import { dev } from '$app/environment';
import { inject } from '@vercel/analytics';
import { injectSpeedInsights } from '@vercel/speed-insights/sveltekit';

injectSpeedInsights();
dev || injectSpeedInsights();
inject({ mode: dev ? 'development' : 'production' });
8 changes: 6 additions & 2 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@
],
[
{ src: Climbing2, alt: 'Checking out a climbing route while preparing for it' },
{ src: Expo3, alt: 'Seif, Filip and I listening to a live "silent" podcast at Future Entrepreneurship 2022' },
{
src: Expo3,
alt: 'Seif, Filip and I listening to a live "silent" podcast at Future Entrepreneurship 2022'
},
{ src: Subway, alt: 'Posing in front of the subway in Vienna' }
],
[
Expand Down Expand Up @@ -78,7 +81,8 @@
</div>
</Dialog.Trigger>
<Dialog.Content>
<enhanced:img alt={image.alt} class='h-full w-full object-cover' src={image.src} />
<enhanced:img alt={image.alt} class='h-full w-full object-cover rounded-md'
src={image.src} />
<Dialog.Footer>
<p>
{image.alt}
Expand Down

0 comments on commit a55181f

Please sign in to comment.