Fix timecapsule build output path: move assets out of src, fix passthrough and build script

This commit is contained in:
2026-09-12 13:34:11 +02:00
parent 1e893e4d69
commit 0112b5a7b3
58 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -3,8 +3,8 @@ const markdownIt = require("markdown-it");
const md = new markdownIt({ html: true, breaks: true });
module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy({ "src/assets": "/timecapsule/assets" });
eleventyConfig.addPassthroughCopy({ "src/.htaccess": "/timecapsule/.htaccess" });
eleventyConfig.addPassthroughCopy({ "assets": "/timecapsule/assets" });
eleventyConfig.addPassthroughCopy({ ".htaccess": "/timecapsule/.htaccess" });
eleventyConfig.setLibrary("md", md);