mirror of
https://github.com/wahyd4/heygo.git
synced 2026-08-08 21:05:48 +10:00
14 lines
251 B
TypeScript
14 lines
251 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
build: {
|
|
outDir: 'dist/client',
|
|
emptyOutDir: true,
|
|
},
|
|
test: {
|
|
environment: 'node',
|
|
},
|
|
});
|