I think it could also have been that you happened to retry after we managed to resolve the issue
I think it could also have been that you happened to retry after we managed to resolve the issue

.pages.dev project domain?

NODE_ENV=staging but it didn't workproduction
.pages.devNODE_ENV=stagingproductionconst NODE_ENV = process.env.NODE_ENV
export const supabaseUrl =
NODE_ENV === 'production'
? process.env.NEXT_PUBLIC_SUPABASE_URL
: process.env.NEXT_PUBLIC_DEV_SUPABASE_URL
export const supabaseAnonKey =
NODE_ENV === 'production'
? process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY
: process.env.NEXT_PUBLIC_DEV_SUPABASE_ANON_KEY
console.log({ NODE_ENV })
// i then import this client into a react component or something
export const supabasePublicClient = createClient(supabaseUrl!, supabaseAnonKey!)