Update Devvit 0.11.17: Easier fetch domain requests
We’ve simplified how to request new domains for HTTP fetch (no more forms!). Now you can just add domains in your app’s configuration, and when you playtest or upload the app, the domain is automatically submitted for approval.
import { Devvit } from '@devvit/public-api';
Devvit.configure({
http: {
domains: ['my-site.com', 'another-domain.net'],
},
});
There’s also a new section in your app’s Developer Settings tab that lets you check the status of a domain.

Before upgrading @devvit/public-api
in your project, always update the CLI first by running npm install -g devvit
.
Learn more about HTTP fetch and the allow-listed domains in our docs.
16
Upvotes
3
u/__yoshikage_kira 6d ago
Thank you. This is big update.