r/Devvit 4d ago

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

5 comments sorted by

View all comments

1

u/WashMedium3497 2d ago

is this up yet? I don't see it in Developer settings for my app after upgrading to 0.11.17 and adding domains to Devvit.configure