diff --git a/scripts/build.mjs b/scripts/build.mjs index 3ae55cad..fc7e223b 100644 --- a/scripts/build.mjs +++ b/scripts/build.mjs @@ -183,7 +183,7 @@ async function buildJs() { name: `${PROJECT_ID}Bundle` }); const code = output[0].code; - const bundlePath = resource(`${PROJECT_ID}.mjs`, code); + const bundlePath = resource(`${PROJECT_ID}.js`, code); await fs.writeFile(bundlePath, code, "utf8"); return bundlePath; }