10 lines
168 B
JavaScript
10 lines
168 B
JavaScript
|
module.exports = function(eleventyConfig) {
|
||
|
|
||
|
eleventyConfig.addPassthroughCopy('page/css')
|
||
|
|
||
|
return {
|
||
|
dir: {
|
||
|
input: "pages"
|
||
|
}
|
||
|
}
|
||
|
}
|