From b7f60e1f4753ffb5b68016dd613a62067f24a3fa Mon Sep 17 00:00:00 2001 From: Max Schmidt Date: Sat, 17 Jun 2023 12:24:56 +0200 Subject: [PATCH] Refactor import paths in Content.astro --- astro/src/components/Content.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); ---