Hello, i use this command to deploy my sveltekit app to Clouddflare pages ```bash npm run build && n

Hello,
i use this command to deploy my sveltekit app to Clouddflare pages
npm run build && npx wrangler pages deploy .svelte-kit/cloudflare --commit-dirty=true --env production

this is my wrangler.toml file
name = "resume"
send_metrics = false
pages_build_output_dir = ".svelte-kit/cloudflare"

[[d1_databases]]
binding = "DB" # i.e. available in your Worker on env.DB
database_name = "resume_db"
database_id = "2ed32f58-b02a-454f-a14d-6eaf9dc7bc4s"
migrations_dir = "migrations"

[[r2_buckets]]
binding = 'BUCKET' # <~ valid JavaScript variable name
bucket_name = 'resume'

[vars]

it always deploy to the preview environment
what i can i make it deploy to production
thank you
Was this page helpful?