diff options
| author | Elizabeth Hunt <me@liz.coffee> | 2025-12-14 17:36:55 -0800 |
|---|---|---|
| committer | Elizabeth Hunt <me@liz.coffee> | 2025-12-14 17:36:55 -0800 |
| commit | 0888840cf20de2187095daa154ec441240a12ef3 (patch) | |
| tree | 40b20808ecb31200978dc7de466d3e2102f987d6 /.eleventy.js | |
| download | lizdotcoffee-0888840cf20de2187095daa154ec441240a12ef3.tar.gz lizdotcoffee-0888840cf20de2187095daa154ec441240a12ef3.zip | |
Init
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" + }; +} |
