adds --remote to build command

This commit is contained in:
2025-12-18 10:58:34 +00:00
parent 781af6414e
commit fcb297637d
5 changed files with 525 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
import { defineConfig, envField } from "astro/config";
import db from "@astrojs/db";
import mdx from "@astrojs/mdx";
import node from "@astrojs/node";
@@ -15,5 +16,5 @@ export default defineConfig({
},
},
site: "https://joeac.net",
integrations: [mdx(), sitemap()],
integrations: [db(), mdx(), sitemap()],
});