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 }