higher traffic = higher cache rate = faster response times
higher traffic = higher cache rate = faster response times


NODE_ENV=staging but it didn't workproduction
wrangler pages deploy [directory]
wrangler.toml for Pageswrangler pages deploy it upload the files but it doesn't launch the build (es. npm run build) and listed arguments does't seem to help https://developers.cloudflare.com/workers/wrangler/commands/#deploy-1
netlify deployconst 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!)NODE_ENV=stagingproduction