From 5126e495319266f14cb1fa2bd4fcd4faaaff1b33 Mon Sep 17 00:00:00 2001 From: lauralani Date: Sun, 21 May 2023 13:32:30 +0200 Subject: [PATCH] update static stuff AGAIN --- .eleventy.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.eleventy.js b/.eleventy.js index bdca60f..df95db4 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -1,8 +1,7 @@ module.exports = function(eleventyConfig) { - eleventyConfig.addPassthroughCopy('static/.well-known') - eleventyConfig.addPassthroughCopy('static/certificates') - eleventyConfig.addPassthroughCopy('static/css') - eleventyConfig.addPassthroughCopy('static/js') + eleventyConfig.addPassthroughCopy({ "static/.well-known": ".well-known" }) + eleventyConfig.addPassthroughCopy({ "static/certificates": "certificates" }) + eleventyConfig.addPassthroughCopy({ "static/css": "css" }) return { passthroughFileCopy: true }