mirror of
https://github.com/EasyTier/EasyTier.git
synced 2026-08-06 12:39:51 +00:00
f0d00d6161
* refactor(web): use generated proto network types * fix(core): preserve dumped config flags * test(web): cover config flag save paths * fix(ci): use system protoc before frontend codegen * fix(ci): serialize frontend-lib builds
13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import ViteYaml from '@modyfi/vite-plugin-yaml'
|
|
|
|
export default defineConfig({
|
|
plugins: [vue(), ViteYaml()],
|
|
test: {
|
|
environment: 'happy-dom',
|
|
include: ['tests/**/*.spec.ts'],
|
|
setupFiles: ['./tests/setup.ts'],
|
|
},
|
|
})
|