From 9f8acf281818a898df2879793493f1d2423dbc14 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Sun, 24 Dec 2023 00:25:21 -0500 Subject: Fix silly regex error for workflow --- src/config.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'src/config.ts') diff --git a/src/config.ts b/src/config.ts index b0ad1b0..75ba2dd 100644 --- a/src/config.ts +++ b/src/config.ts @@ -3,6 +3,7 @@ import BuildInfo from "../config.json"; // eslint-disable-next-line @typescript-eslint/no-explicit-any export default function (eleventyConfig: any) { + // passthrough static files to public eleventyConfig.addPassthroughCopy({ "./src/static/": "/", }); -- cgit