summaryrefslogtreecommitdiff
path: root/astro.config.ts
diff options
context:
space:
mode:
authorseth <[email protected]>2024-10-09 10:59:13 -0400
committerGitHub <[email protected]>2024-10-09 10:59:13 -0400
commitd17bca56238e9ca326d60e58230d0d354f23bfe8 (patch)
tree12aee4c37a1490914e6307ce1b0023be2df93105 /astro.config.ts
parent7d6495399d5e1ba429a339de1c3a00f121e89305 (diff)
back to astro for hopefully the last time (#146)
Diffstat (limited to 'astro.config.ts')
-rw-r--r--astro.config.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/astro.config.ts b/astro.config.ts
new file mode 100644
index 0000000..572107e
--- /dev/null
+++ b/astro.config.ts
@@ -0,0 +1,9 @@
+import { defineConfig } from "astro/config";
+
+import sitemap from "@astrojs/sitemap";
+
+// https://astro.build/config
+export default defineConfig({
+ site: process.env.CF_PAGES_URL || "https://getchoo.com",
+ integrations: [sitemap()],
+});