Added eleventy config to add public folder passthrough, updated pack.json to serve content instead of compile, added plugins/metadata to rendering engine
6 lines
180 B
JavaScript
6 lines
180 B
JavaScript
/** @param {import("@11ty/eleventy").UserConfig} eleventyConfig */
|
|
export default async function(eleventyConfig) {
|
|
eleventyConfig.addPassthroughCopy(
|
|
{'./public/': '/'}
|
|
)
|
|
} |