From 3100c1c1e983094aadabe9584f40d583c773341e Mon Sep 17 00:00:00 2001 From: xy <10816187@qq.com> Date: Fri, 31 Jul 2026 00:38:57 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=B0=83=E6=95=B4api=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/IndexSidebar.astro | 2 +- src/pages/archive.astro | 2 +- src/pages/index.astro | 2 +- src/pages/page/[...page].astro | 2 +- src/pages/post/[...slug].astro | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/IndexSidebar.astro b/src/components/IndexSidebar.astro index 930411d..6479c7f 100644 --- a/src/components/IndexSidebar.astro +++ b/src/components/IndexSidebar.astro @@ -6,7 +6,7 @@ import { createHttp } from "@/lib/request"; const http = createHttp(Astro.request.headers); const { data: categories } = - await http.get>("category/stats"); + await http.get>("categories/stats"); ---