mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-13 17:05:47 +01:00
12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
|
|
import react from '@vitejs/plugin-react';
|
||
|
|
|
||
|
|
import { defineConfig } from 'vitest/config';
|
||
|
|
|
||
|
|
// https://vitejs.dev/config/
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react()],
|
||
|
|
test: {
|
||
|
|
environment: 'jsdom',
|
||
|
|
},
|
||
|
|
});
|