Conversation
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
react-server-docs | d54e88f | Mar 01 2026, 01:44 PM |
❌ 3 Tests Failed:
View the top 3 failed test(s) by shortest run time
To view more test analytics, go to the Test Analytics Dashboard |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR introduces two new deployment adapters for Azure, enabling
@lazarv/react-serverapplications to be deployed to Azure cloud infrastructure.New Adapters
azure— Azure Function AppA full-featured Azure deployment adapter (
packages/react-server/adapters/azure/) that:package.jsonwhen not explicitly configured..azure/output directory with the correct structure expected by Azure Functions.az,azSafe,azJSON) for Azure CLI calls with structured error reporting.azure-swa— Azure Static Web AppsA lightweight adapter (
packages/react-server/adapters/azure-swa/) targeting Azure Static Web Apps with:entry.mjs.(context, req)invocation model to the standardfetch-based handler, includingx-ms-original-url/x-forwarded-proto/x-forwarded-hostsupport..azure-swa/withstatic/andfunctions/subdirectories matching SWA's expected layout.staticwebapp.config.jsonfor routing/navigation fallback configuration.Other Changes
create-react-serverwizard — bothazureandazure-swaare now selectable deployment targets in the interactivedeploystep.core.mjs,core.d.ts) — minor extensions to support the new adapters (output directory handling, type exports).outDirhandling across thebun,cloudflare,deno, andnetlifyadapters for consistency with the new convention.AdapterGridcomponent for the adapter index page..gitignoreentries for.azureand.azure-swabuild output directories.