SecureChat / vite.config.js
ausername-12345
reuse register endpoint for google setup
73d7d26
Raw
History Blame Contribute Delete
636 Bytes
import react from '@vitejs/plugin-react'
import { defineConfig } from 'vite'
// https://vite.dev/config/
export default defineConfig({
logLevel: 'error', // Suppress warnings, only show errors
plugins: [
base44({
// Support for legacy code that imports the base44 SDK with @/integrations, @/entities, etc.
// can be removed if the code has been updated to use the new SDK imports from @base44/sdk
legacySDKImports: process.env.BASE44_LEGACY_SDK_IMPORTS === 'true',
hmrNotifier: true,
navigationNotifier: true,
analyticsTracker: true,
visualEditAgent: true
}),
react(),
]
});