Removed baseURL from the hugo config file
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2024-08-25 21:08:40 -05:00
parent 8c3b1a3617
commit df8751bbfd
2 changed files with 2 additions and 2 deletions

View File

@ -9,4 +9,5 @@ RUN hugo
FROM nginx:stable-alpine FROM nginx:stable-alpine
WORKDIR /usr/share/nginx/html WORKDIR /usr/share/nginx/html
COPY --from=build /opt/HugoApp/public . COPY --from=build /opt/HugoApp/public .
EXPOSE 80/tcp EXPOSE 80
ENTRYPOINT ["nginx", "-g", "daemon off;"]

View File

@ -1,4 +1,3 @@
baseURL = 'http://localhost'
languageCode = 'en-us' languageCode = 'en-us'
title = "Carl's Playground" title = "Carl's Playground"
theme = 'PaperMod' theme = 'PaperMod'