From 790ebad260b2139f213dd624a691c2ae248b80f8 Mon Sep 17 00:00:00 2001 From: zenfyr Date: Thu, 13 Nov 2025 09:14:22 +0700 Subject: [PATCH] fix extra `/` --- eleventy.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eleventy.config.js b/eleventy.config.js index 65ec95e..27c8150 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -5,7 +5,7 @@ import syntaxHighlight from "@11ty/eleventy-plugin-syntaxhighlight"; export default function(eleventyConfig) { eleventyConfig.addPassthroughCopy({ "_includes/assets/": "assets/" }); - eleventyConfig.addPassthroughCopy({ "_includes/other/.well-known//": ".well-known/" }); // static identity stuff + eleventyConfig.addPassthroughCopy({ "_includes/other/.well-known/": ".well-known/" }); // static identity stuff eleventyConfig.addPassthroughCopy({ "_includes/other/custard.html": "custard.html" }); // 🍮 eleventyConfig.addPassthroughCopy({ "sneexy/notebook/": "_subdomain/sneexy/notebook/" }); // notebook page generated by quartz seperately - see https://forged.synth.download/sneexy/notebook eleventyConfig.addPlugin(eleventyNavigationPlugin);