d696e0282b
* chore: gitignore dev_docs and remove from tracking Internal reference docs — not needed in the public repo. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: skip env validation during builds when vars are absent The build-time guard only checked for Docker placeholder sentinels but not for completely absent vars (CI/Vercel builds). This caused page collection to fail in environments without env vars. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: handle absent env vars in Supabase browser client during builds The build-time guard only checked for Docker placeholder sentinels but crashed on undefined when env vars are completely absent (CI). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: remove core import from @/extensions/ in describe route Inline the DescriptionAnalysisInput/Result types instead of importing from the ai-categorization extension. Core code must not import from extensions directly. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
673 B
TypeScript
17 lines
673 B
TypeScript
import { createBrowserClient } from '@supabase/ssr'
|
|
|
|
// During Docker builds, NEXT_PUBLIC_* vars are placeholder sentinels
|
|
// (e.g. __NEXT_PUBLIC_SUPABASE_URL__) that get replaced at runtime by
|
|
// docker-entrypoint.sh. Provide a dummy URL so the client constructor
|
|
// doesn't throw during Next.js static page generation.
|
|
const url = process.env.NEXT_PUBLIC_SUPABASE_URL ?? ''
|
|
const key = process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY ?? ''
|
|
const isBuildPlaceholder = !url || url.startsWith('__')
|
|
|
|
export function createClient() {
|
|
return createBrowserClient(
|
|
isBuildPlaceholder ? 'https://placeholder.supabase.co' : url,
|
|
isBuildPlaceholder ? 'placeholder' : key
|
|
)
|
|
}
|