fix
Deploy app frontend / app frontend (push) Successful in 1m8s

This commit is contained in:
2024-12-03 17:11:25 +02:00
parent ff40dce016
commit e9a2490e83
2 changed files with 17 additions and 14 deletions
+11 -9
View File
@@ -2,13 +2,15 @@ import { fileURLToPath } from 'node:url'
import { mergeConfig, defineConfig, configDefaults } from 'vitest/config'
import viteConfig from './vite.config'
export default mergeConfig(
viteConfig,
defineConfig({
test: {
environment: 'jsdom',
exclude: [...configDefaults.exclude, 'e2e/**'],
root: fileURLToPath(new URL('./', import.meta.url)),
},
}),
export default defineConfig((env) =>
mergeConfig(
viteConfig(env),
defineConfig({
test: {
environment: 'jsdom',
exclude: [...configDefaults.exclude, 'e2e/**'],
root: fileURLToPath(new URL('./', import.meta.url)),
},
}),
),
)