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()],
});

5
website/db/config.ts Normal file
View File

@@ -0,0 +1,5 @@
import { defineDb } from "astro:db";
export default defineDb({
tables: {},
});

3
website/db/seed.ts Normal file
View File

@@ -0,0 +1,3 @@
import { db } from "astro:db";
export default async function seed() {}