From 6fa4eb164a1f0064bb8c8ed8498d21c2656f8489 Mon Sep 17 00:00:00 2001 From: Tom - Henry Coursow Date: Thu, 27 Jul 2023 14:11:00 +0200 Subject: [PATCH] vite.config.js aktualisiert --- vite.config.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/vite.config.js b/vite.config.js index d2a66ce..6f48aa8 100644 --- a/vite.config.js +++ b/vite.config.js @@ -9,6 +9,13 @@ export default defineConfig({ environment: 'jsdom', setupFiles: './src/test/setup.js', reporters: ['json'], - outputFile: 'test.json' + outputFile: 'test.json', + exclude: [ + '**/node_modules/**', + '**/dist/**', + '**/cypress/**', + '.{idea,git,cache,output,temp}/**', + './src/config/**', + ] }, });