15 lines
No EOL
385 B
JavaScript
15 lines
No EOL
385 B
JavaScript
const eleventySass = require("eleventy-sass");
|
|
|
|
module.exports = function(eleventyConfig) {
|
|
eleventyConfig.addPassthroughCopy("img");
|
|
eleventyConfig.addPassthroughCopy("css/fonts");
|
|
eleventyConfig.addPassthroughCopy("LICENSE.txt");
|
|
|
|
|
|
eleventyConfig.addPlugin(eleventySass);
|
|
|
|
return {
|
|
markdownTemplateEngine: "njk",
|
|
htmlTemplateEngine: "njk"
|
|
}
|
|
}; |