From 9e76d0763642995c5e77cfd25664904770a272b1 Mon Sep 17 00:00:00 2001 From: Braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Sun, 8 Aug 2021 22:40:55 +0200 Subject: [PATCH] fix: rollup bundling css in d.ts file --- rollup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup.ts b/rollup.ts index c57f2f6e..eaba83c6 100644 --- a/rollup.ts +++ b/rollup.ts @@ -104,7 +104,7 @@ for (const { external, iife } of activePackages) { format: 'es' }, plugins: [dts()], - external: ['vue', ...(external || [])] + external: ['vue', ...(external || []), /\.css$/] }); } }