From 70bddef69e3f76e23f6f7b8e6dad507451a18484 Mon Sep 17 00:00:00 2001 From: ternera Date: Tue, 12 May 2026 14:32:23 -0500 Subject: [PATCH 1/4] fixed minor typo --- docs/guides/migrate/devvit-singleton.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/migrate/devvit-singleton.md b/docs/guides/migrate/devvit-singleton.md index 5c34a769..2b9ae49e 100644 --- a/docs/guides/migrate/devvit-singleton.md +++ b/docs/guides/migrate/devvit-singleton.md @@ -34,7 +34,7 @@ Delete the `devvit.yaml` file from your project root. All configuration is now h ### 3. Handle static assets -If your app uses static assets (images, fonts, etc.) from an `assets` folder, you'll need to define this in update your `devvit.json` to point to these assets: +If your app uses static assets (images, fonts, etc.) from an `assets` folder, you'll need to update your `devvit.json` to point to these assets: ```json { From 59dd78aaacda459b93792c55d22155e3d4e0834a Mon Sep 17 00:00:00 2001 From: ternera Date: Tue, 12 May 2026 14:50:45 -0500 Subject: [PATCH 2/4] fixed some more small issues --- docs/guides/migrate/inline-web-view.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/guides/migrate/inline-web-view.md b/docs/guides/migrate/inline-web-view.md index e1700e0f..1ae3d8f5 100644 --- a/docs/guides/migrate/inline-web-view.md +++ b/docs/guides/migrate/inline-web-view.md @@ -16,7 +16,7 @@ Apps can be partially migrated, you don't need to re-write everything! - No postMessage required - Use web native fetch() to server endpoints directly -- App logic is either on the client, or the server, with clear deliniation +- App logic is either on the client, or the server, with clear delineation - Client effects are available directly from web views ## Setting up devvit.json @@ -161,8 +161,6 @@ server.listen(port, () => console.log(`http://localhost:${port}`)); ### Calling your server endpoints -Now - Instead of using `postMessage`, your client-side code can now directly fetch the initial state from the `/api/init` endpoint we defined in the server. ```ts title=/src/client/app.ts From adb88f2141a156443a024f205eb7d3bed17a9841 Mon Sep 17 00:00:00 2001 From: ternera Date: Tue, 12 May 2026 14:52:45 -0500 Subject: [PATCH 3/4] fixed some more small issues --- versioned_docs/version-0.12/guides/migrate/inline-web-view.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/versioned_docs/version-0.12/guides/migrate/inline-web-view.md b/versioned_docs/version-0.12/guides/migrate/inline-web-view.md index e1700e0f..1ae3d8f5 100644 --- a/versioned_docs/version-0.12/guides/migrate/inline-web-view.md +++ b/versioned_docs/version-0.12/guides/migrate/inline-web-view.md @@ -16,7 +16,7 @@ Apps can be partially migrated, you don't need to re-write everything! - No postMessage required - Use web native fetch() to server endpoints directly -- App logic is either on the client, or the server, with clear deliniation +- App logic is either on the client, or the server, with clear delineation - Client effects are available directly from web views ## Setting up devvit.json @@ -161,8 +161,6 @@ server.listen(port, () => console.log(`http://localhost:${port}`)); ### Calling your server endpoints -Now - Instead of using `postMessage`, your client-side code can now directly fetch the initial state from the `/api/init` endpoint we defined in the server. ```ts title=/src/client/app.ts From 1434a84f9cbebe76e7df0f801108df5528196eae Mon Sep 17 00:00:00 2001 From: ternera Date: Tue, 12 May 2026 14:53:42 -0500 Subject: [PATCH 4/4] fixed minor typo --- versioned_docs/version-0.12/guides/migrate/devvit-singleton.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versioned_docs/version-0.12/guides/migrate/devvit-singleton.md b/versioned_docs/version-0.12/guides/migrate/devvit-singleton.md index 5c34a769..2b9ae49e 100644 --- a/versioned_docs/version-0.12/guides/migrate/devvit-singleton.md +++ b/versioned_docs/version-0.12/guides/migrate/devvit-singleton.md @@ -34,7 +34,7 @@ Delete the `devvit.yaml` file from your project root. All configuration is now h ### 3. Handle static assets -If your app uses static assets (images, fonts, etc.) from an `assets` folder, you'll need to define this in update your `devvit.json` to point to these assets: +If your app uses static assets (images, fonts, etc.) from an `assets` folder, you'll need to update your `devvit.json` to point to these assets: ```json {