Remove unnecessary passthroughs

This commit is contained in:
2025-11-10 20:00:45 -06:00
parent d45465219a
commit 31fe00f4ca

View File

@@ -195,12 +195,7 @@ export default async function (eleventyConfig) {
// Passthrough
eleventyConfig
.addPassthroughCopy({ "./public/": "/" })
.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");
.addPassthroughCopy("./content/special/");
// Get the first `n` elements of a collection.
eleventyConfig.addFilter("head", (array, n) => {