Files
dlseitz.dev-frontend/,eleventy.js
dereklseitz ef6363b3bd feat: Set up Eleventy and restructure project
Install and configure Eleventy for static site generation.

- Reorganized project directories for Eleventy conventions.
- Created base.njk, header.html, and footer.html for modularity.
- Wrote the initial landing page content in index.njk.
2025-08-12 22:45:47 -05:00

14 lines
358 B
JavaScript

module.exports = function (eleventyConfig) {
// Pass through static assets without processing
eleventyConfig.addPassthroughCopy("src/images");
eleventyConfig.addPassthroughCopy("src/styles");
eleventyConfig.addPassthroughCopy("src/scripts");
return {
dir: {
input: "src",
output: "_site",
includes: "includes",
},
};
};