2026-07-13 20:08:31 +03:00
|
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [react()],
|
2026-07-14 09:54:36 +03:00
|
|
|
resolve: {
|
|
|
|
|
dedupe: ['react', 'react-dom'],
|
|
|
|
|
},
|
2026-07-13 20:08:31 +03:00
|
|
|
})
|