15 lines
260 B
TypeScript
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,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
})
|