A bunch of stuff

This commit is contained in:
2025-11-09 20:57:49 -06:00
parent 9327ca3a43
commit 0263c1de66
18 changed files with 347 additions and 17 deletions

View File

@@ -193,10 +193,14 @@ export default async function (eleventyConfig) {
);
// Passthrough
eleventyConfig
.addPassthroughCopy({ "./public/": "/" })
.addPassthroughCopy("./content/special/");
.addPassthroughCopy("./content/special/")
.addPassthroughCopy("./node_modules/@magenta/music/es6/core.js")
.addPassthroughCopy(
"./node_modules/html-midi-player/dist/midi-player.min.js",
)
.addPassthroughCopy("./node_modules/tone/build/Tone.js");
// Get the first `n` elements of a collection.
eleventyConfig.addFilter("head", (array, n) => {