chore: use @/ alias for component imports in post page

This commit is contained in:
2026-03-31 02:30:39 +02:00
parent 6bf7ae9bef
commit c3cc9ccd01

View File

@@ -1,8 +1,8 @@
import Link from "next/link";
import { getPostData, getAllPostIds } from "@/lib/posts";
import type { PostData } from "@/lib/posts";
import Window from "../../../components/window";
import TableOfContents from "../../../components/table-of-contents";
import Window from "@/components/window";
import TableOfContents from "@/components/table-of-contents";
import { MDXRemote } from "next-mdx-remote/rsc";
import rehypePrettyCode from "rehype-pretty-code";
import rehypeSlug from "rehype-slug";