feat: Updated project config/setup

Added eleventy config to add public folder passthrough, updated pack.json to serve content instead of compile, added plugins/metadata to rendering engine
This commit is contained in:
2025-07-02 21:42:48 -04:00
parent 2b99f7b3e9
commit f5f43578ec
4 changed files with 40 additions and 2 deletions

6
eleventy.config.js Normal file
View File

@ -0,0 +1,6 @@
/** @param {import("@11ty/eleventy").UserConfig} eleventyConfig */
export default async function(eleventyConfig) {
eleventyConfig.addPassthroughCopy(
{'./public/': '/'}
)
}