mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-28 13:31:06 +00:00
10 lines
281 B
JavaScript
10 lines
281 B
JavaScript
const pluginSass = require("eleventy-plugin-sass");
|
|
|
|
module.exports = function(config) {
|
|
config.addPassthroughCopy("js");
|
|
config.addPassthroughCopy("css");
|
|
config.addPassthroughCopy("img");
|
|
config.addPassthroughCopy("test");
|
|
config.addPlugin(pluginSass, {});
|
|
}
|