From 31fe00f4caa2bcfe4d666298f5a5f0dc2402927b Mon Sep 17 00:00:00 2001 From: Nathan Upchurch Date: Mon, 10 Nov 2025 20:00:45 -0600 Subject: [PATCH] Remove unnecessary passthroughs --- eleventy.config.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/eleventy.config.js b/eleventy.config.js index 0f81622..c402834 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -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) => {