Merge pull request 'Correctly set base_url' (#2) from base_url into main
All checks were successful
Building & Deploying Website / Deploy-Website (push) Successful in 17s

Reviewed-on: #2
This commit was merged in pull request #2.
This commit is contained in:
2025-11-05 22:09:05 +01:00
3 changed files with 4 additions and 6 deletions

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:
BASE_URL: ${{ vars.BASE_URL }}
- name: "Publish" - name: "Publish"
run: | run: |

View File

@@ -2,8 +2,7 @@
# Refer to the theme docs for more details about each of these parameters. # Refer to the theme docs for more details about each of these parameters.
# 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'