Skip to content

Commit e2c4607

Browse files
committed
Update vitest configuration to use ui package source path
1 parent e11c2ad commit e2c4607

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vitest.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import { defineConfig } from 'vitest/config';
22
import { fileURLToPath } from 'node:url';
33

4-
const webSrc = fileURLToPath(new URL('./packages/web/src', import.meta.url));
4+
const uiSrc = fileURLToPath(new URL('./packages/ui/src', import.meta.url));
55

66
export default defineConfig({
77
resolve: {
88
alias: {
9-
'@': webSrc,
9+
'@': uiSrc,
1010
},
1111
},
1212
test: {

0 commit comments

Comments
 (0)