mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-27 13:01:03 +00:00
13 lines
415 B
JavaScript
13 lines
415 B
JavaScript
const pluginRss = require("@11ty/eleventy-plugin-rss");
|
|
const pluginSass = require("eleventy-plugin-sass");
|
|
|
|
module.exports = function(config) {
|
|
config.addPassthroughCopy("js");
|
|
config.addPassthroughCopy("css");
|
|
config.addPassthroughCopy("img");
|
|
config.addPassthroughCopy("test");
|
|
config.addPassthroughCopy("_redirects");
|
|
config.addPlugin(pluginRss);
|
|
config.addPlugin(pluginSass, {});
|
|
}
|