17 lines
417 B
JavaScript
17 lines
417 B
JavaScript
export default function (eleventyConfig) {
|
|
eleventyConfig.addPassthroughCopy("src/css");
|
|
eleventyConfig.addPassthroughCopy("src/assets");
|
|
eleventyConfig.addPassthroughCopy("src/js");
|
|
eleventyConfig.addPassthroughCopy("src/fonts");
|
|
|
|
return {
|
|
dir: {
|
|
input: "src",
|
|
output: "_site",
|
|
includes: "_includes",
|
|
},
|
|
templateFormats: ["njk", "html"],
|
|
htmlTemplateEngine: "njk",
|
|
};
|
|
}
|