Remove unused bits
This commit is contained in:
@@ -3,6 +3,5 @@ import sitemap from "@astrojs/sitemap";
|
|||||||
|
|
||||||
// https://astro.build/config
|
// https://astro.build/config
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
site: "https://cassidoo.co/blog",
|
|
||||||
integrations: [sitemap()],
|
integrations: [sitemap()],
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ const posts = (await Astro.glob("../posts/*.md")).sort(
|
|||||||
({
|
({
|
||||||
url,
|
url,
|
||||||
frontmatter: { description, slug, title, tags, added: date },
|
frontmatter: { description, slug, title, tags, added: date },
|
||||||
}) => <Post {url} {description} {date} {slug} {title} {tags} />
|
}) => <Post {description} {date} {slug} {title} {tags} />
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
Reference in New Issue
Block a user