diff options
Diffstat (limited to '.eleventy.js')
| -rw-r--r-- | .eleventy.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.eleventy.js b/.eleventy.js new file mode 100644 index 0000000..3088c8d --- /dev/null +++ b/.eleventy.js @@ -0,0 +1,18 @@ +import pluginRss from "@11ty/eleventy-plugin-rss"; + +export default function(eleventyConfig) { + eleventyConfig.addPlugin(pluginRss); + + eleventyConfig.addPassthroughCopy("src/assets"); + + return { + dir: { + input: "src", + output: "_site", + includes: "_includes", + layouts: "_layouts" + }, + markdownTemplateEngine: "njk", + htmlTemplateEngine: "njk" + }; +} |
