enable .gmi content type

This commit is contained in:
2026-03-21 22:23:45 +00:00
parent 9332601f5b
commit a09f874bba
4 changed files with 17 additions and 3 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
import { defineConfig, envField, passthroughImageService } from "astro/config";
import db from "@astrojs/db";
import gemtext from "astro-gemtext";
import mdx from "@astrojs/mdx";
import node from "@astrojs/node";
@@ -34,5 +35,5 @@ export default defineConfig({
service: passthroughImageService(),
},
site: "https://joeac.net",
integrations: [db(), mdx(), sitemap()],
integrations: [db(), gemtext(), mdx(), sitemap()],
});