diff options
| author | Joe Carstairs <me@joeac.net> | 2026-03-21 22:23:45 +0000 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-03-21 22:23:45 +0000 |
| commit | a09f874bba31567c0c758e67e6e6d6c2cbb06e7a (patch) | |
| tree | adfbe301834bd5da95de0bb82bfd9d030c196154 /website/astro.config.mjs | |
| parent | 9332601f5b94ca980c76ed604a88ad013bf99b22 (diff) | |
enable .gmi content type
Diffstat (limited to 'website/astro.config.mjs')
| -rw-r--r-- | website/astro.config.mjs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/website/astro.config.mjs b/website/astro.config.mjs index 539c6ca..dc879a6 100644 --- a/website/astro.config.mjs +++ b/website/astro.config.mjs @@ -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()], }); |
