From 60fcfde2fb6fd1d186f9028bbde81d1473c5c908 Mon Sep 17 00:00:00 2001 From: Kiril Videlov Date: Sun, 19 May 2024 16:53:36 +0200 Subject: [PATCH] add vitest exclude for node_modules --- app/vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/vite.config.ts b/app/vite.config.ts index 4882138d3..2e0d72653 100644 --- a/app/vite.config.ts +++ b/app/vite.config.ts @@ -52,6 +52,6 @@ export default defineConfig({ inline: ['sorcery'] }, includeSource: ['src/**/*.{js,ts}'], - exclude: ['**/e2e/playwright/**/*'] + exclude: ['**/e2e/playwright/**/*', 'node_modules/**/*'] } });