patch(): Patched type aliases

Changed inferred path i.e., "./",
"../", "../../". into @ import
path.
This commit is contained in:
kami
2026-03-04 04:48:39 +08:00
parent 4ae9e6c924
commit 001055ee51
9 changed files with 17 additions and 25 deletions
+3 -8
View File
@@ -1,12 +1,7 @@
---
import { Image } from 'astro:assets';
import type { CollectionEntry } from 'astro:content';
import BaseHead from '../components/BaseHead.astro';
import Footer from '../components/Footer.astro';
import FormattedDate from '../components/FormattedDate.astro';
import Header from '../components/Header.astro';
import GithubIcon from '../assets/github.svg'
type Props = CollectionEntry<'blog'>['data'];
import BaseHead from '@components/BaseHead.astro';
import Header from '@components/Header.astro';
import GithubIcon from '@assets/github.svg'
const { title, description, pubDate, updatedDate, gitLink } = Astro.props;
---