Is it possible to host CloudFlare pages in a subfolder?
Is it possible to host CloudFlare pages in a subfolder?

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 deployNODE_ENV=stagingwrangler pages deploy [directory][build]
command = "npm run build"
publish = "dist" --> How can i tell to use dist? is watch_dir?const 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!)