mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 14:17:42 +01:00
15 lines
275 B
TypeScript
15 lines
275 B
TypeScript
|
|
import { defineConfig } from 'vitest/config'
|
||
|
|
import react from '@vitejs/plugin-react'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [
|
||
|
|
react(),
|
||
|
|
],
|
||
|
|
test: {
|
||
|
|
globals: true,
|
||
|
|
environment: 'jsdom',
|
||
|
|
setupFiles: './tests/setupVitest.js',
|
||
|
|
mockReset: true,
|
||
|
|
},
|
||
|
|
});
|