14 lines
250 B
JavaScript
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,
|
||
|
}
|
||
|
}
|