11 lines
262 B
JavaScript
11 lines
262 B
JavaScript
|
module.exports = function(eleventyConfig) {
|
||
|
eleventyConfig.addPassthroughCopy("assets");
|
||
|
eleventyConfig.addPassthroughCopy("style");
|
||
|
eleventyConfig.addPassthroughCopy("fonts");
|
||
|
eleventyConfig.setTemplateFormats([
|
||
|
"html",
|
||
|
"css",
|
||
|
"js"
|
||
|
]);
|
||
|
};
|