From d241feb0e9e3f6c501d2847812b61cd0cb69e572 Mon Sep 17 00:00:00 2001 From: Jens Date: Fri, 13 Feb 2026 00:59:04 +0100 Subject: [PATCH] fix the things --- routes/posts/[slug]/index.server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/posts/[slug]/index.server.ts b/routes/posts/[slug]/index.server.ts index 0909013..d49fe21 100644 --- a/routes/posts/[slug]/index.server.ts +++ b/routes/posts/[slug]/index.server.ts @@ -15,5 +15,5 @@ export const GET = async (req: Request) => { export const getStaticPaths = async () => { const posts = await readDir("data/posts/"); - return posts.map((p) => "/news/" + p.slice(0, -3) + "/"); + return posts.map((p) => "/posts/" + p.slice(0, -3) + "/"); };