Files
bdrp-app/vitest.config.ts
2026-04-20 16:42:28 +08:00

15 lines
260 B
TypeScript

import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
environment: 'uniapp',
environmentOptions: {
uniapp: {
platform: 'mp-weixin',
projectPath: './src',
port: 5121,
},
},
},
})