Update-urls prompt disappeared?

Previously, when I connected my app with Shopify CLI, it asked if I wanted to update (redirection) urls. I could select “always”, “ask each time”, or “never”.

I’ve now updated to 3.49.5 and now when I --reset and re-connect, it doesn’t ask. Now it always performs update-urls whether I like it or not. I can’t see any way to turn it off.

examples below:

> npx shopify app dev --reset

Before proceeding, your project needs to be associated with an app.

?  Create this project as a new app on Shopify?
✔  No, connect it to an existing app

?  Which existing app is this for?
✔  [my-app-here]

?  Which store would you like to use to view your project?
✔  [my-app-here]

14:34:16 │ web-frontend │ 
14:34:16 │ web-frontend │ > dev
14:34:16 │ web-frontend │ > vite
14:34:16 │ web-frontend │ 

Hi there :waving_hand:

You should be able to now update this setting in the Shopify.app.toml file. You can set automatically_update_urls_on_dev property directly if you would like it to update or not.

name = "My App"
client_id = "a61950a2cbd5f32876b0b55587ec7a27"
application_url = "https://www.my-app.com/"
embedded = true

[build]
automatically_update_urls_on_dev = false
dev_store_url = "my-test-store.myshopify.com"

@lizk thanks! based on this, the instructions on the CLI commands page are out of date: https://shopify.dev/docs/apps/tools/cli/commands#dev (it still says to select “No, never”)