14 lines
358 B
JavaScript
14 lines
358 B
JavaScript
module.exports = function (eleventyConfig) {
|
|
// Pass through static assets without processing
|
|
eleventyConfig.addPassthroughCopy("src/images");
|
|
eleventyConfig.addPassthroughCopy("src/styles");
|
|
eleventyConfig.addPassthroughCopy("src/scripts");
|
|
|
|
return {
|
|
dir: {
|
|
input: "src",
|
|
output: "_site",
|
|
includes: "includes",
|
|
},
|
|
};
|
|
}; |