Remove passthroughcopy

Parcel handles this work
This commit is contained in:
EJ Mason 2020-02-06 15:14:54 -08:00
parent 893d9a8319
commit 260949b792

View File

@ -38,8 +38,6 @@ module.exports = function(config) {
console.log(post); console.log(post);
}); });
config.addPassthroughCopy({ 'assets/css/': 'assets/css/' });
config.addShortcode('definitionFlag', (flag) => { config.addShortcode('definitionFlag', (flag) => {
const cleanText = new Map([ const cleanText = new Map([
[ [
@ -178,7 +176,6 @@ module.exports = function(config) {
}, },
templateFormats: ['njk', 'md'], templateFormats: ['njk', 'md'],
htmlTemplateEngine: 'njk', htmlTemplateEngine: 'njk',
markdownTemplateEngine: 'njk', markdownTemplateEngine: 'njk'
passthroughFileCopy: true
}; };
}; };