From 260949b7923b51cf5dc212e2a4fd6f40f73f3ba1 Mon Sep 17 00:00:00 2001 From: EJ Mason Date: Thu, 6 Feb 2020 15:14:54 -0800 Subject: [PATCH] Remove passthroughcopy Parcel handles this work --- .eleventy.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.eleventy.js b/.eleventy.js index 432eee9b..01f67b36 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -38,8 +38,6 @@ module.exports = function(config) { console.log(post); }); - config.addPassthroughCopy({ 'assets/css/': 'assets/css/' }); - config.addShortcode('definitionFlag', (flag) => { const cleanText = new Map([ [ @@ -178,7 +176,6 @@ module.exports = function(config) { }, templateFormats: ['njk', 'md'], htmlTemplateEngine: 'njk', - markdownTemplateEngine: 'njk', - passthroughFileCopy: true + markdownTemplateEngine: 'njk' }; };