From 4f94814b52ed44725d12561daaae7c4abc7465a3 Mon Sep 17 00:00:00 2001 From: Christian Westgaard Date: Mon, 13 May 2024 09:57:43 +0200 Subject: [PATCH] Update tsup.config.ts Co-authored-by: Alan Semenov --- tsup.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsup.config.ts b/tsup.config.ts index 4f072bf..2a7f247 100644 --- a/tsup.config.ts +++ b/tsup.config.ts @@ -10,7 +10,7 @@ export default defineConfig(async (options: Options) => { return import('./tsup/server').then(m => m.default()); } if (options.d === DIR_DST_ASSETS) { - return import('./tsup/client-asset').then(m => m.default()); + return import('./tsup/client').then(m => m.default()); } throw new Error(`Unconfigured directory:${options.d}!`) });