File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 11---
22import type { StarlightPageProps } from " @astrojs/starlight/props" ;
33import StarlightPage from " @astrojs/starlight/components/StarlightPage.astro" ;
4- import { Aside } from " @astrojs/starlight/components" ;
54
65import { getChangelogs } from " ~/util/changelogs" ;
76import Changelogs from " ~/components/Changelogs.tsx" ;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export const GET: APIRoute = async (context) => {
1919 trailingSlash : false ,
2020 items : entries . map ( ( entry ) => {
2121 return {
22- title : entry . title ,
22+ title : ` ${ entry . product . name } - ${ entry . title } ` ,
2323 description : entry . content ,
2424 pubDate : new Date ( entry . date ) ,
2525 link : entry . link ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { z } from "astro:schema";
22import { getCollection , getEntry } from "astro:content" ;
33import { type CollectionEntry } from "astro:content" ;
44import { entryToString } from "./container" ;
5- import { Marked , marked } from "marked" ;
5+ import { Marked } from "marked" ;
66import { baseUrl } from "marked-base-url" ;
77
88export type Changelogs = Awaited < ReturnType < typeof getChangelogs > > ;
You can’t perform that action at this time.
0 commit comments