devsite/eleventy.config.js

10 lines
178 B
JavaScript
Raw Permalink Normal View History

2024-07-08 01:49:38 +00:00
module.exports = function (eleventyConfig) {
2024-07-08 02:09:12 +00:00
eleventyConfig.addPassthroughCopy("src/power.png");
2024-07-08 01:49:38 +00:00
return {
dir: {
input: "src",
output: "dist",
},
};
};