Skip to content

Instantly share code, notes, and snippets.

View Kenramiscal1106's full-sized avatar
:fishsticks:
Crumb'd

Ken Daniele Ramiscal Kenramiscal1106

:fishsticks:
Crumb'd
View GitHub Profile
@Kenramiscal1106
Kenramiscal1106 / BGImage.astro
Created April 3, 2023 05:09
Creating a full screen bg image with image optimization
---
// @ts-ignore
import { getImage } from "@astrojs/image";
import { ImageComponentLocalImageProps, ImageComponentRemoteImageProps, warnForMissingAlt } from "@astrojs/image/components";
export type Props = ImageComponentLocalImageProps | ImageComponentRemoteImageProps
const {loading = 'lazy', decoding="async", ...props} = Astro.props
if (props.alt === undefined || props.alt === null) {