Files
Common_Platform/web/vitest.config.ts
T
2026-04-28 16:27:16 +08:00

11 lines
209 B
TypeScript

import { defineConfig } from 'vitest/config'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
test: {
environment: 'node',
include: ['src/**/*.spec.ts']
}
})