fix root path

This commit is contained in:
Nycki 2024-09-13 02:59:21 +00:00
parent a51ae9739b
commit 04470c32ec
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
module.exports = {
title: "Eleventy Base Blog v8",
url: "https://example.com/",
url: "https://nycki.net/beta/",
language: "en",
description: "I am writing about my experiences as a naval navel-gazer.",
author: {

View file

@ -139,6 +139,6 @@ module.exports = function(eleventyConfig) {
// When paired with the HTML <base> plugin https://www.11ty.dev/docs/plugins/html-base/
// it will transform any absolute URLs in your HTML to include this
// folder name and does **not** affect where things go in the output folder.
pathPrefix: "/",
pathPrefix: "/beta/",
};
};