mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-28 05:21:18 +00:00
12 lines
403 B
JavaScript
12 lines
403 B
JavaScript
const pluginSyntaxHighlight = require("@11ty/eleventy-plugin-syntaxhighlight");
|
|
const pluginSass = require("eleventy-plugin-sass");
|
|
|
|
module.exports = function(config) {
|
|
config.addPlugin(pluginSyntaxHighlight);
|
|
config.addPassthroughCopy("js");
|
|
config.addPassthroughCopy("css");
|
|
config.addPassthroughCopy("img");
|
|
config.addPassthroughCopy("_");
|
|
config.addPlugin(pluginSass, {});
|
|
}
|