From 5dc81652333cf020d2d07dcb5f284edc29110465 Mon Sep 17 00:00:00 2001 From: Jeremy Valentine <38669521+valentine195@users.noreply.github.com> Date: Wed, 11 Sep 2024 10:39:32 -0400 Subject: [PATCH] fix: Disable API spec generation --- esbuild.config.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esbuild.config.mjs b/esbuild.config.mjs index eaa5813..fc866c3 100644 --- a/esbuild.config.mjs +++ b/esbuild.config.mjs @@ -91,12 +91,12 @@ if (prod) { } process.exit(1); }); - await build({ + /* await build({ entry: ["./src/api/api.ts"], dts: { only: true } - }); + }); */ } else { let ctx = await esbuild.context(params); await ctx.watch();