redirects old blog posts to new

This commit is contained in:
2026-03-24 22:01:38 +00:00
parent 782c3df3d3
commit 579c31b7c7
2 changed files with 37 additions and 1 deletions
+3 -1
View File
@@ -3,9 +3,10 @@ import db from "@astrojs/db";
import gemtext from "astro-gemtext";
import mdx from "@astrojs/mdx";
import node from "@astrojs/node";
import sitemap from "@astrojs/sitemap";
import redirects from "./redirects.mjs";
// https://astro.build/config
export default defineConfig({
adapter: node({
@@ -34,6 +35,7 @@ export default defineConfig({
image: {
service: passthroughImageService(),
},
redirects,
site: "https://joeac.net",
integrations: [db(), gemtext(), mdx(), sitemap()],
});