Correctly set base_url #2

Merged
hendrik-hog merged 2 commits from base_url into main 2025-11-05 22:09:06 +01:00
3 changed files with 4 additions and 6 deletions
Showing only changes of commit 4277ab3103 - Show all commits

View File

@@ -19,7 +19,9 @@ jobs:
# extended: true # extended: true
- name: Build - name: Build
run: hugo --minify run: hugo -b $BASE_URL --minify
env:
DOMAIN: ${{ vars.BASE_URL }}
- name: "Publish" - name: "Publish"
run: | run: |

View File

@@ -3,7 +3,6 @@
# https://blowfish.page/docs/getting-started/ # https://blowfish.page/docs/getting-started/
theme = "blowfish" # UNCOMMENT THIS LINE theme = "blowfish" # UNCOMMENT THIS LINE
# baseURL = "https://your_domain.com/"
defaultContentLanguage = "de" defaultContentLanguage = "de"
# pluralizeListTitles = "true" # hugo function useful for non-english languages, find out more in https://gohugo.io/getting-started/configuration/#pluralizelisttitles # pluralizeListTitles = "true" # hugo function useful for non-english languages, find out more in https://gohugo.io/getting-started/configuration/#pluralizelisttitles

View File

@@ -1,3 +0,0 @@
baseURL = 'https://example.org/'
languageCode = 'en-us'
title = 'My New Hugo Site'