diff --git a/astro/src/components/Content.astro b/astro/src/components/Content.astro index 316bbe2..d2822d9 100644 --- a/astro/src/components/Content.astro +++ b/astro/src/components/Content.astro @@ -1,7 +1,7 @@ --- import { Image } from "@astrojs/image/components"; -import { getContentArray } from "src/utils/helpers"; -import { getImageSrc } from "src/utils/payload"; +import { getContentArray } from "@/utils/helpers"; +import { getImageSrc } from "@/utils/payload"; const { content } = Astro.props; const contentArray = getContentArray(content); ---