From 04470c32ec66dd3b21290d0e0a6698c335c487d5 Mon Sep 17 00:00:00 2001 From: Nick Lamicela Date: Fri, 13 Sep 2024 02:59:21 +0000 Subject: [PATCH] fix root path --- _data/metadata.js | 2 +- eleventy.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/metadata.js b/_data/metadata.js index 5a5c99b..2d22045 100644 --- a/_data/metadata.js +++ b/_data/metadata.js @@ -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: { diff --git a/eleventy.config.js b/eleventy.config.js index 53eeae4..4fc054f 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -139,6 +139,6 @@ module.exports = function(eleventyConfig) { // When paired with the HTML 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/", }; };