aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/functions/fixtures/middleware/src/pages/astronaut.astro
blob: b3da724c3d8a1d476f207871bb05c4bcfd1dd355 (plain) (blame)
1
2
3
4
5
6
7
8
9
---
import { Image } from 'astro:assets';
import astronautImage from "../astronaut.jpg"

export const prerender = true;
---

<Image src={astronautImage} alt="an astronaut floating in space" />