Added eleventy config
Added input and output directories and set the templating engine to nunjucks
This commit is contained in:
parent
b855c0280c
commit
c4ed92a057
|
@ -0,0 +1,10 @@
|
||||||
|
module.exports = function(eleventyConfig) {
|
||||||
|
|
||||||
|
return {
|
||||||
|
dir: {
|
||||||
|
input: 'src',
|
||||||
|
output: '_site',
|
||||||
|
},
|
||||||
|
markdownTemplateEngine: 'njk'
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue