diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d79658e..fa214fb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -64,4 +64,4 @@ jobs: run: pnpm install --frozen-lockfile - name: Run Astro Build - run: pnpm astro build + run: pnpm build diff --git a/src/components/ArchivePanel.svelte b/src/components/ArchivePanel.svelte index 22939c2..7dfd340 100644 --- a/src/components/ArchivePanel.svelte +++ b/src/components/ArchivePanel.svelte @@ -19,7 +19,7 @@ interface Post { data: { title: string; tags: string[]; - category?: string; + category?: string | null; published: Date; }; } diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro index 2a0fdad..811c858 100644 --- a/src/components/Navbar.astro +++ b/src/components/Navbar.astro @@ -52,6 +52,7 @@ let links: NavBarLink[] = navBarConfig.links.map( )} + {/* @ts-ignore - Svelte client:only directive */}