2025-03-18 09:11:47 +05:30
|
|
|
import { defineConfig } from 'vite';
|
|
|
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
|
|
|
|
|
|
// https://vite.dev/config/
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [react()],
|
|
|
|
|
server: {
|
|
|
|
|
port: 8200,
|
|
|
|
|
host: true,
|
2025-03-22 18:33:02 +05:30
|
|
|
},
|
|
|
|
|
optimizeDeps: {
|
|
|
|
|
exclude: ["@react-oauth/google"], // Exclude the problematic library
|
2025-03-18 09:11:47 +05:30
|
|
|
},
|
|
|
|
|
});
|