From 73b4459a02413c482d2cb5c4f63f46de6e8d76c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Thu, 14 Dec 2023 14:27:07 +0100 Subject: [PATCH 1/2] Change base configuration code to the dreammall.earth example --- docs/.vuepress/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 97de03b..e7d6bf1 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -7,7 +7,7 @@ export default defineUserConfig({ ...meta, theme, plugins, - base: process.env.VUEPRESS_BASE ?? '/', + base: process.env.VUEPRESS_BASE ? `/${process.env.VUEPRESS_BASE}/` : '/', locales:{ // The key is the path for the locale to be nested under. // As a special case, the default locale can use '/' as its path. From 4e02f611091c64da7c06163f013a22ea6487cd91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Thu, 14 Dec 2023 14:27:54 +0100 Subject: [PATCH 2/2] Add 'CNAME' file content to 'vuepress-deploy.yml' --- .github/workflows/vuepress-deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/vuepress-deploy.yml b/.github/workflows/vuepress-deploy.yml index 0d5df55..ef1f5d0 100644 --- a/.github/workflows/vuepress-deploy.yml +++ b/.github/workflows/vuepress-deploy.yml @@ -27,5 +27,7 @@ jobs: with: target_branch: gh-pages build_dir: docs/.vuepress/dist + author: Wolfgang Huß + fqdn: ocelot.social env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}