mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-26 13:19:34 +07:00
12 lines
181 B
TypeScript
12 lines
181 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'jsdom',
|
|
globals: true,
|
|
alias: {
|
|
'@': './src',
|
|
},
|
|
},
|
|
});
|