---
title: No config? No problem. Just `wrangler deploy`
description: Automatic project configuration is now the default behavior of wrangler deploy, with support for automatic pull requests in the Cloudflare dashboard.
image: https://developers.cloudflare.com/changelog-preview.png
---

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## No config? No problem. Just \`wrangler deploy\`

Feb 25, 2026 

[ Workers ](https://developers.cloudflare.com/workers/) 

You can now deploy any existing project to Cloudflare Workers — even without a Wrangler configuration file — and `wrangler deploy` will _just work_.

Starting with Wrangler **4.68.0**, running [wrangler deploy](https://developers.cloudflare.com/workers/wrangler/commands/general/#deploy) [automatically configures your project](https://developers.cloudflare.com/workers/framework-guides/automatic-configuration/) by detecting your framework, installing required adapters, and deploying it to Cloudflare Workers.

#### Using Wrangler locally

Terminal window

```

npx wrangler deploy


```

When you run `wrangler deploy` in a project without a configuration file, Wrangler:

1. Detects your framework from `package.json`
2. Prompts you to confirm the detected settings
3. Installs any required adapters
4. Generates a `wrangler.jsonc` [configuration file](https://developers.cloudflare.com/workers/wrangler/configuration/)
5. Deploys your project to Cloudflare Workers

You can also use [wrangler setup](https://developers.cloudflare.com/workers/wrangler/commands/general/#setup) to configure without deploying, or pass [\--yes](https://developers.cloudflare.com/workers/wrangler/commands/general/#deploy) to skip prompts.

#### Using the Cloudflare dashboard

![Automatic configuration pull request created by Workers Builds](https://developers.cloudflare.com/_astro/automatic-pr.CwJG6Bec_1cC506.webp) 

When you connect a repository through the [Workers dashboard ↗](https://dash.cloudflare.com/?to=/:account/workers-and-pages/create), a [pull request is generated](https://developers.cloudflare.com/workers/ci-cd/builds/automatic-prs/) for you with all necessary files, and a [preview deployment](https://developers.cloudflare.com/workers/configuration/previews/) to check before merging.

Note

A pull request is only generated when your deploy command is `npx wrangler deploy`. If you use a custom deploy command, automatic configuration still runs but a PR is not created.

#### Background

In December 2025, we [introduced automatic configuration](https://developers.cloudflare.com/changelog/2025-12-16-wrangler-autoconfig/) as an experimental feature. It is now generally available and the default behavior.

If you have questions or run into issues, join the [GitHub discussion ↗](https://github.com/cloudflare/workers-sdk/discussions/11667).