snipette-wripro-site/.eleventy.js

15 lines
299 B
JavaScript
Raw Normal View History

module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy('src/*.htm')
eleventyConfig.addPassthroughCopy('src/img')
2020-04-10 06:37:06 -04:00
eleventyConfig.addPassthroughCopy('src/fonts')
return {
dir: {
input: "src",
output: "dist",
},
passthroughFileCopy: true,
}
}