mirror of
https://github.com/sammwyy/MikuMikuBeam.git
synced 2025-06-30 02:31:13 +00:00
11 lines
220 B
TypeScript
11 lines
220 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
optimizeDeps: {
|
|
exclude: ['lucide-react'],
|
|
},
|
|
});
|