fix(ci): more cleanup

This commit is contained in:
Barrett Ruth 2025-11-09 14:56:25 -05:00
parent 04308592ff
commit 77acd7c517
2 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
---
import { getCollection, type CollectionEntry } from "astro:content";
import { getCollection } from "astro:content";
import PostLayout from "../../layouts/PostLayout.astro";
import * as collections from "../../content/config";
import type { PostCollection, AnyCollectionEntry } from "../../types";
@ -43,7 +43,7 @@ if (post.data?.redirect) {
<PostLayout frontmatter={post.data} post={post}>
<Fragment slot="head">
<title>{pageTitle}</title>
<script type="module" src="/scripts/index.js"></script>
<script src="/scripts/index.js"></script>
</Fragment>
<Content />
</PostLayout>

View file

@ -1,7 +1,7 @@
---
import BaseLayout from "../layouts/BaseLayout.astro";
import { sortItem } from "../utils/sort.js";
import { getCollection, type CollectionEntry } from "astro:content";
import { getCollection } from "astro:content";
import type { PostCollection } from "../types";
const title = "Barrett Ruth";