Files
CyBySide/eleventy.config.js
Cyper f5f43578ec 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
2025-07-02 21:42:48 -04:00

6 lines
180 B
JavaScript

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