mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 15:47:44 +01:00
* update deps and vitest * dedupe packages * update package.json files * Update to latest vite and vites * Fix build * Update lockfile
12 lines
239 B
TypeScript
12 lines
239 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
setupFiles: './tests/setupVitest.js',
|
|
},
|
|
});
|