mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
Add server island route to the front of the route list (#12263)
* Add server island route to the front of the route list * Add changeset
This commit is contained in:
parent
388d2375b6
commit
e9e8080a81
3 changed files with 20 additions and 1 deletions
5
.changeset/honest-dots-jump.md
Normal file
5
.changeset/honest-dots-jump.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Fixes conflict between server islands and on-demand dynamic routes in the form of `/[...rest]` or `/[paramA]/[paramB]`.
|
|
@ -0,0 +1,14 @@
|
|||
---
|
||||
export const prerender = false;
|
||||
---
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title>Conflicting route</title>
|
||||
</head>
|
||||
<body>
|
||||
This route would conflict with the route generated for server islands.
|
||||
<br />
|
||||
This file is here so the tests break if that happens.
|
||||
</body>
|
||||
</html>
|
|
@ -44,7 +44,7 @@ export function ensureServerIslandRoute(config: ConfigFields, routeManifest: Man
|
|||
return;
|
||||
}
|
||||
|
||||
routeManifest.routes.push(getServerIslandRouteData(config));
|
||||
routeManifest.routes.unshift(getServerIslandRouteData(config));
|
||||
}
|
||||
|
||||
type RenderOptions = {
|
||||
|
|
Loading…
Add table
Reference in a new issue