mirror of
https://github.com/supabase/supabase.git
synced 2026-05-07 01:10:15 -04:00
398480a3cd
## I have read the [CONTRIBUTING.md](https://github.com/supabase/supabase/blob/master/CONTRIBUTING.md) file. YES <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added a new React authentication quickstart example demonstrating email-based OTP (magic link) authentication flow with Supabase integration. * **Documentation** * Updated the React auth quickstart guide to use dynamic code samples for improved maintainability. <sub>✏️ Tip: You can customize this high-level summary in your review settings.</sub> <!-- end of auto-generated comment: release notes by coderabbit.ai -->
7 lines
133 B
JavaScript
7 lines
133 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
})
|