summaryrefslogtreecommitdiff
path: root/.changeset/six-shrimps-glow.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/six-shrimps-glow.md')
-rw-r--r--.changeset/six-shrimps-glow.md39
1 files changed, 0 insertions, 39 deletions
diff --git a/.changeset/six-shrimps-glow.md b/.changeset/six-shrimps-glow.md
deleted file mode 100644
index 2d925bb8c..000000000
--- a/.changeset/six-shrimps-glow.md
+++ /dev/null
@@ -1,39 +0,0 @@
----
-"astro": patch
----
-
-Fixes a regression in routing priority for index pages in rest parameter folders and dynamic sibling trees.
-
-Considering the following tree:
-```
-src/pages/
-├── index.astro
-├── static.astro
-├── [dynamic_file].astro
-├── [...rest_file].astro
-├── blog/
-│ └── index.astro
-├── [dynamic_folder]/
-│ ├── index.astro
-│ ├── static.astro
-│ └── [...rest].astro
-└── [...rest_folder]/
- ├── index.astro
- └── static.astro
-```
-
-The routes are sorted in this order:
-```
-/src/pages/index.astro
-/src/pages/blog/index.astro
-/src/pages/static.astro
-/src/pages/[dynamic_folder]/index.astro
-/src/pages/[dynamic_file].astro
-/src/pages/[dynamic_folder]/static.astro
-/src/pages/[dynamic_folder]/[...rest].astro
-/src/pages/[...rest_folder]/static.astro
-/src/pages/[...rest_folder]/index.astro
-/src/pages/[...rest_file]/index.astro
-```
-
-This allows for index files to be used as overrides to rest parameter routes on SSR when the rest parameter matching `undefined` is not desired.