site/.eleventy.js

11 lines
183 B
JavaScript
Raw Normal View History

2023-10-18 13:32:43 -04:00
module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy("./src/style.css");
return {
dir: {
input: "src",
output: "public",
},
};
};