htmx/www/.eleventy.js
2023-03-01 12:02:01 -07:00

11 lines
325 B
JavaScript

const pluginRss = require("@11ty/eleventy-plugin-rss");
module.exports = function(config) {
config.addPassthroughCopy("js");
config.addPassthroughCopy("css");
config.addPassthroughCopy("img");
config.addPassthroughCopy("test");
config.addPassthroughCopy("_redirects");
config.addPlugin(pluginRss);
}