Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
2e4124d
add docs for `AstroIntegrationMiddleware`, `AstroRenderer` and `Clien…
ArmandPhilippot Jan 7, 2026
8a3481f
flatten `route` option type to avoid repeats
ArmandPhilippot Jan 7, 2026
9198ab4
add docs for `PageBuildData`
ArmandPhilippot Jan 7, 2026
d174b1d
remove broken external link for `AddressInfo`
ArmandPhilippot Jan 7, 2026
39ff1c8
add `SerializedSSRManifest`, `SSRManifest` & related types structure
ArmandPhilippot Jan 7, 2026
b62df90
add Since for new entries
ArmandPhilippot Jan 8, 2026
2fd585e
31/52 TODOs done...
ArmandPhilippot Jan 9, 2026
1b1ec24
complete `SSRManifest` and add `SSRManifestCSP`
ArmandPhilippot Jan 9, 2026
8d0d387
no more TODOs
ArmandPhilippot Jan 9, 2026
8fe1d7b
refine + describe `SSRComponentMetadata` & `RouteInfo`
ArmandPhilippot Jan 10, 2026
5408022
add links from the Adapter API reference
ArmandPhilippot Jan 10, 2026
b5e512f
small refinement
ArmandPhilippot Jan 10, 2026
9ef8d8c
Merge branch 'main' into feat/integrations-api-replace-source-code-li…
ArmandPhilippot Jan 10, 2026
f4ab7d9
Thanks Sarah for this great review, first batch of suggestions
ArmandPhilippot Jan 15, 2026
b316ae5
update link in `address` option description
ArmandPhilippot Jan 15, 2026
6597fa2
2nd batch before manual edits
ArmandPhilippot Jan 15, 2026
83c14ad
get rid of "the following properties:"
ArmandPhilippot Jan 15, 2026
ef10009
replace "loaded renderer"
ArmandPhilippot Jan 15, 2026
8ecf0d2
even better, thanks again!
ArmandPhilippot Jan 15, 2026
f812c24
Apply suggestions from boss review, aka Yan
ArmandPhilippot Jan 15, 2026
27cb709
Merge branch 'main' into feat/integrations-api-replace-source-code-li…
ArmandPhilippot Jan 16, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/content/docs/en/reference/adapter-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ You will need to create a file that executes during server-side requests to enab

<p>

**Type:** `(manifest: SSRManifest, options: any) => Record<string, any>`
**Type:** <code>(manifest: <a href="/en/reference/integrations-reference/#ssrmanifest">SSRManifest</a>, options: any) => Record\<string, any\></code>
</p>

An exported function that takes an SSR manifest as its first argument and an object containing your adapter [`args`](#args) as its second argument. This should provide the exports required by your host.
Expand Down Expand Up @@ -314,7 +314,7 @@ export function createExports(manifest, args) {

<p>

**Type:** `(manifest: SSRManifest, options: any) => Record<string, any>`
**Type:** <code>(manifest: <a href="/en/reference/integrations-reference/#ssrmanifest">SSRManifest</a>, options: any) => Record\<string, any\></code>
</p>

An exported function that takes an SSR manifest as its first argument and an object containing your adapter [`args`](#args) as its second argument.
Expand Down
Loading