From b8853d6950c82bda30bc49ed2210d78727a2cda5 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Thu, 4 Dec 2025 08:33:51 -0600 Subject: [PATCH] deploy to root of docs site --- .github/workflows/publish-docs.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 38144f2..5cbb376 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -30,6 +30,6 @@ jobs: username: ${{secrets.DOCS_FTP_USERNAME}} password: ${{secrets.DOCS_FTP_PASSWORD}} local-dir: ./dist/ - server-dir: docs/ + server-dir: ./ port: 21 protocol: ftps diff --git a/package.json b/package.json index b236210..c480709 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "dev": "astro dev", "start": "astro dev", "build": "astro check && astro build", - "build:prod": "astro check && astro build --base /docs", + "build:prod": "astro check && astro build", "preview": "astro preview", "astro": "astro" },