From 890434ce63e27bd43143179a16807fbbfc7bcb78 Mon Sep 17 00:00:00 2001 From: Lightling Date: Mon, 14 Oct 2024 18:59:52 -0400 Subject: [PATCH] include populate in the script fetch for simplification --- projects/sites/scripts/cms-to-static.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/sites/scripts/cms-to-static.js b/projects/sites/scripts/cms-to-static.js index f45d914..16ddde7 100644 --- a/projects/sites/scripts/cms-to-static.js +++ b/projects/sites/scripts/cms-to-static.js @@ -29,6 +29,8 @@ const mapper = (inVal) => { console.log('Invalid URL. Quitting...'); rl.close(); return; + } else if (!fetchUrl.includes('?')) { + fetchUrl += '?populate[0]=entries&populate[1]=entries.variants&populate[2]=tags&populate[3]=tags.value' } }