From b5936d6bab7ad76d85d329d87c37d98da3d6bccd Mon Sep 17 00:00:00 2001 From: Mark Sowell Date: Sun, 20 Oct 2024 15:11:16 -0600 Subject: [PATCH] . --- .github/workflows/deploy.yml | 2 +- dev/astro.config.mjs | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bd6aea1..d49aa57 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -38,4 +38,4 @@ jobs: id: deployment uses: actions/deploy-pages@v4 with: - path: "./dist" \ No newline at end of file + path: ./dist \ No newline at end of file diff --git a/dev/astro.config.mjs b/dev/astro.config.mjs index e3b889a..5c47dec 100644 --- a/dev/astro.config.mjs +++ b/dev/astro.config.mjs @@ -3,5 +3,8 @@ import { defineConfig } from 'astro/config'; export default defineConfig({ site: 'https://marksowell.com', // Your domain - base: '/dev', // Serves the Astro site under /dev + base: '/dev', // Serves the Astro site under /dev + root: './dev', + srcDir: './dev', + publicDir: './dev' });