dlseitz.dev-frontend/.eleventy.js

15 lines
410 B
JavaScript

module.exports = function (eleventyConfig) {
// ✅ Pass through static assets to the root of output
eleventyConfig.addPassthroughCopy({ "src/images": "images" });
eleventyConfig.addPassthroughCopy({ "src/styles": "styles" });
eleventyConfig.addPassthroughCopy({ "src/scripts": "scripts" });
return {
dir: {
input: "src",
output: "_site",
includes: "_includes",
},
};
};