cleanup + tweaks

This commit is contained in:
Cory Dransfeldt 2023-03-13 15:29:59 -07:00
parent fd0a622127
commit 9e49528d86
No known key found for this signature in database
4 changed files with 3 additions and 32 deletions

View file

@ -41,10 +41,6 @@ module.exports = function (eleventyConfig) {
// enable merging of tags
eleventyConfig.setDataDeepMerge(true)
// copy these static files to _site folder
eleventyConfig.addPassthroughCopy('src/assets')
eleventyConfig.addPassthroughCopy('src/manifest.json')
// create excerpts
eleventyConfig.setFrontMatterParsingOptions({
excerpt: true,
@ -84,6 +80,8 @@ module.exports = function (eleventyConfig) {
passthroughFileCopy: true,
dir: {
input: 'src',
includes: '_includes',
data: '_data',
output: '_site',
},
}