Skip to content
Merged
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
fix link format and typo
  • Loading branch information
sarah11918 authored Sep 26, 2025
commit a84e34519c2fbaa16900d7e2bc67e6634d0f7c20
4 changes: 2 additions & 2 deletions src/content/docs/en/guides/upgrade-to/v6.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -224,13 +224,13 @@ const integration = () => {

<SourcePR number="14446" title="feat: cleanup integration api"/>

In Astro 5.0, [`functionPerRoute` was deprecated](https://docs.astro.build/en/guides/upgrade-to/v5/#deprecated-functionperroute-adapter-api). That meant that `entryPoints` on the `astro:build:ssr` hook was always empty.
In Astro 5.0, [`functionPerRoute` was deprecated](/en/guides/upgrade-to/v5/#deprecated-functionperroute-adapter-api). That meant that `entryPoints` on the `astro:build:ssr` hook was always empty.

Astro 6.0 removes the `entryPoints` map passed to this hook entirely.

#### What should I do?

Remove any instance of `rouentryPointstes` passed to `astro:build:ssr`:
Remove any instance of `entryPoints` passed to `astro:build:ssr`:

```js title="my-integration.mjs" del={6}
const integration = () => {
Expand Down
Loading