rmcg.dev/.eleventy.js

27 lines
947 B
JavaScript
Raw Normal View History

module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy("./src/css");
eleventyConfig.addPassthroughCopy("./src/fonts");
eleventyConfig.addPassthroughCopy("./src/images");
eleventyConfig.addPassthroughCopy("./src/svgs");
eleventyConfig.addPassthroughCopy("./src/js");
2022-02-05 23:41:45 +01:00
eleventyConfig.addPassthroughCopy("./src/screenshots");
eleventyConfig.addPassthroughCopy("./projects");
//eleventyConfig.addPassthroughCopy({
// "./src/assets/images": "img",
//});
// 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",
},
};
};