diff options
| author | Joe Carstairs <me@joeac.net> | 2026-06-18 19:21:59 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-06-18 19:21:59 +0100 |
| commit | ca8e6824eaa711105f4092365792720c9dde026b (patch) | |
| tree | 2b6493941352d11b799ee63d3f1311c13de649b8 /website/astro.config.mjs | |
| parent | a0f25057283a397f006127b6f582d190d2c4294e (diff) | |
remove Astro website
Diffstat (limited to 'website/astro.config.mjs')
| -rw-r--r-- | website/astro.config.mjs | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/website/astro.config.mjs b/website/astro.config.mjs deleted file mode 100644 index c04914d..0000000 --- a/website/astro.config.mjs +++ /dev/null @@ -1,41 +0,0 @@ -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"; -import sitemap from "@astrojs/sitemap"; - -import redirects from "./redirects.mjs"; - -// https://astro.build/config -export default defineConfig({ - adapter: node({ - mode: "standalone", - }), - env: { - schema: { - MAX_DAILY_EMAILS: envField.number({ - context: "server", - access: "secret", - }), - LOCAL_SMTP_ENVELOPE_FROM: envField.string({ - context: "server", - access: "secret", - }), - LOCAL_SMTP_HOST: envField.string({ context: "server", access: "secret" }), - LOCAL_SMTP_PORT: envField.number({ context: "server", access: "secret" }), - LOCAL_SMTP_USER: envField.string({ context: "server", access: "secret" }), - LOCAL_SMTP_PASSWORD: envField.string({ - context: "server", - access: "secret", - }), - CONTACT_MAILBOX: envField.string({ context: "server", access: "secret" }), - }, - }, - image: { - service: passthroughImageService(), - }, - redirects, - site: "https://joeac.net", - integrations: [db(), gemtext(), mdx(), sitemap()], -}); |
