We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c805655 commit c77b760Copy full SHA for c77b760
vitest.config.ts
@@ -1,4 +1,4 @@
1
-import { defineConfig } from 'vitest/config'
+import { defineConfig, configDefaults } from 'vitest/config'
2
import react from '@vitejs/plugin-react'
3
import path from 'path'
4
@@ -8,10 +8,11 @@ export default defineConfig({
8
environment: 'jsdom',
9
setupFiles: ['./vitest.setup.ts'],
10
globals: true,
11
+ exclude: [...configDefaults.exclude, 'playwright/**'],
12
},
13
resolve: {
14
alias: {
15
'@': path.resolve(__dirname, '.'),
16
17
-})
18
+})
0 commit comments