diff --git a/vite.config.js b/vite.config.js index 43b8a11a..b0192af7 100644 --- a/vite.config.js +++ b/vite.config.js @@ -63,4 +63,14 @@ export default defineConfig({ host: '127.0.0.1', port: 3000, }, + test: { + exclude: [ + '**/node_modules/**', + '**/dist/**', + '**/cypress/**', + '**/e2e/**', + '**/.{idea,git,cache,output,temp}/**', + '**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*', + ], + }, });