dns-witch.net/.eleventy.js

12 lines
327 B
JavaScript
Raw Permalink Normal View History

2024-07-07 15:56:37 +00:00
module.exports = function (eleventyConfig) {
2024-07-07 19:45:19 +00:00
eleventyConfig.addPassthroughCopy("./src/css");
eleventyConfig.addWatchTarget("./src/css");
eleventyConfig.addPassthroughCopy("./src/img");
eleventyConfig.addWatchTarget("./src/img");
return {
2024-07-07 15:56:37 +00:00
dir: {
input: "src",
output: "public",
},
};
};