mirror of
https://github.com/sammwyy/MikuMikuBeam.git
synced 2025-07-12 00:35:05 +00:00
14 lines
243 B
TypeScript
14 lines
243 B
TypeScript
import react from '@vitejs/plugin-react';
|
|
import { defineConfig } from 'vite';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
optimizeDeps: {
|
|
exclude: [],
|
|
},
|
|
server: {
|
|
strictPort: true
|
|
}
|
|
});
|