diff --git a/astro.config.mjs b/astro.config.mjs
index 9e67214..5e41f03 100644
--- a/astro.config.mjs
+++ b/astro.config.mjs
@@ -3,6 +3,5 @@ import sitemap from "@astrojs/sitemap";
// https://astro.build/config
export default defineConfig({
- site: "https://cassidoo.co/blog",
integrations: [sitemap()],
});
diff --git a/src/pages/posts.astro b/src/pages/posts.astro
index cc73d61..43f303d 100644
--- a/src/pages/posts.astro
+++ b/src/pages/posts.astro
@@ -28,7 +28,7 @@ const posts = (await Astro.glob("../posts/*.md")).sort(
({
url,
frontmatter: { description, slug, title, tags, added: date },
- }) =>
+ }) =>
)
}