mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
test: {
|
|
environment: 'node',
|
|
},
|
|
});
|