Update icons

This commit is contained in:
tiff 2025-04-19 19:31:46 -04:00
parent 1eb8ec01e6
commit 333a0cb51a
6 changed files with 284 additions and 124 deletions

View file

@ -5,14 +5,14 @@ import remarkToc from "remark-toc";
import remarkCollapse from "remark-collapse";
import { SITE } from "./src/config";
import expressiveCode from "astro-expressive-code";
// https://astro.build/config
export default defineConfig({
site: SITE.website,
integrations: [
sitemap({
filter: page => SITE.showArchives || !page.endsWith("/archives"),
}),
],
integrations: [sitemap({
filter: page => SITE.showArchives || !page.endsWith("/archives"),
}), expressiveCode()],
markdown: {
remarkPlugins: [remarkToc, [remarkCollapse, { test: "Table of contents" }]],
shikiConfig: {
@ -36,4 +36,4 @@ export default defineConfig({
svg: true,
responsiveImages: true,
},
});
});