This commit is contained in:
Nycki 2024-09-13 21:19:34 +00:00
parent c956402f9d
commit 570abf9d4f
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
module.exports = { module.exports = {
title: "nycki.net", title: "nycki.net",
url: "https://nycki.net/beta/", url: "https://nycki.net/",
language: "en", language: "en",
description: "nycki.net", description: "nycki.net",
author: { author: {

View file

@ -1,6 +1,6 @@
--- ---
# Metadata comes from _data/metadata.js # Metadata comes from _data/metadata.js
permalink: /feed/feed.xml permalink: /blog/feed.xml
--- ---
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:base="{{ metadata.language }}"> <feed xmlns="http://www.w3.org/2005/Atom" xml:base="{{ metadata.language }}">

View file

@ -153,6 +153,6 @@ module.exports = function(eleventyConfig) {
// When paired with the HTML <base> plugin https://www.11ty.dev/docs/plugins/html-base/ // 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 // 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. // folder name and does **not** affect where things go in the output folder.
pathPrefix: "/beta/", pathPrefix: "/",
}; };
}; };