From 112ee5fa82b85abeee372f70d613d17cf818abf4 Mon Sep 17 00:00:00 2001 From: konnorrogers Date: Thu, 20 Mar 2025 16:05:39 -0400 Subject: [PATCH] add a guard for non-server builds --- docs/.eleventy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/.eleventy.js b/docs/.eleventy.js index 30b9e4533..15d98a59c 100644 --- a/docs/.eleventy.js +++ b/docs/.eleventy.js @@ -42,7 +42,7 @@ const passThrough = [...passThroughExtensions.map(ext => 'docs/**/*.' + ext)]; export default function (eleventyConfig) { /** - * This is the guard we use for now to make sure our final dont need a 2nd pass by the server. This keeps us able to still deploy the bare HTML files on Vercel until the app is ready. + * This is the guard we use for now to make sure our final built files dont need a 2nd pass by the server. This keeps us able to still deploy the bare HTML files on Vercel until the app is ready. */ const serverBuild = process.env.WEBAWESOME_SERVER === "true"