snipette-datpro-site/.eleventy.js
Badri Sunderarajan ba1301aeaf Add and set up Eleventy (11ty)
Right now this just copies over static assets; no processing done
:P
2020-04-10 15:32:57 +05:30

14 lines
250 B
JavaScript

module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy('src/*.htm')
eleventyConfig.addPassthroughCopy('src/img')
return {
dir: {
input: "src",
output: "dist",
},
passthroughFileCopy: true,
}
}