Last change
on this file since 9bcad23 was 590f667, checked in by Ljubomir Ilievski <ilievski.ljubomir@…>, 3 months ago |
Added Initial frontend
|
-
Property mode
set to
100644
|
File size:
382 bytes
|
Rev | Line | |
---|
[590f667] | 1 | import { fileURLToPath } from 'node:url'
|
---|
| 2 | import { mergeConfig, defineConfig, configDefaults } from 'vitest/config'
|
---|
| 3 | import viteConfig from './vite.config'
|
---|
| 4 |
|
---|
| 5 | export default mergeConfig(
|
---|
| 6 | viteConfig,
|
---|
| 7 | defineConfig({
|
---|
| 8 | test: {
|
---|
| 9 | environment: 'jsdom',
|
---|
| 10 | exclude: [...configDefaults.exclude, 'e2e/**'],
|
---|
| 11 | root: fileURLToPath(new URL('./', import.meta.url)),
|
---|
| 12 | },
|
---|
| 13 | }),
|
---|
| 14 | )
|
---|
Note:
See
TracBrowser
for help on using the repository browser.