From 54f908a0e04ff8eda88733b2ef9f8a730b2a3b8e Mon Sep 17 00:00:00 2001 From: toda Date: Wed, 28 Aug 2024 10:43:37 +0900 Subject: [PATCH] fix: 'use client'; banner that was no longer being output --- packages/lib/tsup.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/lib/tsup.config.ts b/packages/lib/tsup.config.ts index 4fa039d..e53136a 100644 --- a/packages/lib/tsup.config.ts +++ b/packages/lib/tsup.config.ts @@ -5,7 +5,7 @@ export default defineConfig({ clean: true, dts: true, minify: true, - treeshake: true, + treeshake: false, splitting: false, entry: ['src/index.ts'], format: 'esm',