14 lines
368 B
JavaScript
14 lines
368 B
JavaScript
module.exports = function(eleventyConfig) {
|
|
// Critical: Tell 11ty to copy CSS and Images directly to the build folder
|
|
// Without this, your styles and images won't appear in the _site output
|
|
eleventyConfig.addPassthroughCopy("src/css");
|
|
eleventyConfig.addPassthroughCopy("assets");
|
|
|
|
return {
|
|
dir: {
|
|
input: ".",
|
|
output: "_site"
|
|
}
|
|
};
|
|
};
|