Added eleventy config

Added input and output directories and set the templating engine to nunjucks
This commit is contained in:
Claudia Reynders 2022-04-24 13:03:48 +02:00
parent b855c0280c
commit c4ed92a057
1 changed files with 10 additions and 0 deletions

10
.eleventy.js Normal file
View File

@ -0,0 +1,10 @@
module.exports = function(eleventyConfig) {
return {
dir: {
input: 'src',
output: '_site',
},
markdownTemplateEngine: 'njk'
}
}