mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-29 22:11:22 +00:00
11 lines
325 B
JavaScript
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);
|
|
}
|