diff --git a/dev/astro.config.mjs b/dev/astro.config.mjs index 0577b78..18de5c9 100644 --- a/dev/astro.config.mjs +++ b/dev/astro.config.mjs @@ -2,6 +2,12 @@ import { defineConfig } from 'astro/config'; export default defineConfig({ - site: 'https://marksowell.github.io', // Your domain + site: 'https://marksowell.com', // Your domain base: '/dev', // Serves the Astro site under /dev + trailingSlash: "ignore", + output: "static", + outDir: './dev', + build: { + assets: 'astro' + } });