Files
firefrost-website/.eleventy.js
2026-04-02 18:39:00 -05:00

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"
}
};
};