From 2f23d15d77751c4f2bd6fb874b6416013f508fea Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Wed, 21 Jan 2026 12:14:18 +0800 Subject: [PATCH] fix vue components config --- next-ui/vite.config.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next-ui/vite.config.mts b/next-ui/vite.config.mts index f55ebbaa..331df52d 100644 --- a/next-ui/vite.config.mts +++ b/next-ui/vite.config.mts @@ -42,7 +42,7 @@ export default defineConfig(({ mode }) => ({ dirs: ['src/components'], extensions: ['vue', 'ts'], include: [/\.vue$/, /\.[tj]s$/], - globsExclude: ['src/**/*.stories.*'], + excludeNames: [/\.stories/], directoryAsNamespace: true, collapseSamePrefixes: true, }),