module.exports = function (eleventyConfig) { eleventyConfig.addPassthroughCopy("./src/css"); eleventyConfig.addPassthroughCopy("./src/fonts"); eleventyConfig.addPassthroughCopy("./src/images"); eleventyConfig.addPassthroughCopy("./src/svgs"); eleventyConfig.addPassthroughCopy("./src/js"); eleventyConfig.addPassthroughCopy("./src/screenshots"); eleventyConfig.addPassthroughCopy({ "./projects/freeCodeCamp": "freeCodeCamp", }); eleventyConfig.addPassthroughCopy({ "./projects/FrontendMentor": "FrontendMentor", }); //eleventyConfig.addPassthroughCopy({ // "./src/assets/images": "img", //}); // WATCH Targets eleventyConfig.addWatchTarget("./src/css/"); eleventyConfig.addWatchTarget("./src/js/"); // Return your Object options: return { dir: { input: "src", output: "www", // ⚠️ These values are both relative to the input directory. // 📝 _includes is a default value, as is _data but I like them // visible here as a reminder includes: "includes", layouts: "layouts", data: "data", }, }; };