dns-witch.net.eu.org/.eleventy.js

12 lines
327 B
JavaScript
Raw Normal View History

2025-07-05 16:19:59 +00:00
module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy("./src/css");
eleventyConfig.addWatchTarget("./src/css");
eleventyConfig.addPassthroughCopy("./src/img");
eleventyConfig.addWatchTarget("./src/img");
return {
dir: {
input: "src",
output: "public",
},
};
};