diff options
author | 2023-05-22 12:58:03 +0000 | |
---|---|---|
committer | 2023-05-22 12:58:03 +0000 | |
commit | 8f418d13c5d5c9c40f05020205f24380b718654b (patch) | |
tree | 59bd10042d49b44a7219a8aba37e165efd8447e9 /.changeset/strange-ties-cry.md | |
parent | 0616ef255145bf173386b94474dede376e1f2037 (diff) | |
download | astro-8f418d13c5d5c9c40f05020205f24380b718654b.tar.gz astro-8f418d13c5d5c9c40f05020205f24380b718654b.tar.zst astro-8f418d13c5d5c9c40f05020205f24380b718654b.zip |
fix(hybrid-output): no matched route when using `getStaticPaths` (#7150)
* `isPrenderDefault` ---> `isPrerenderDefault`
* test: add test fixture
* test: add hybrid getStaticPaths tests
* try fix in ci
* bring back edit lost on merge conflict fix
* back static paths guard
* move function to new file to avoid bundling issues
* remove unsued import
* debugging cleanup
* chore: update fixture's package.json
* cleanup test
* small test refactoring
* `status.ts` --> `metadata.ts`
* smol refactor
* chore: changeset
* just return the prerender metadata
* refactor tests
* chore: update lock file
Diffstat (limited to '.changeset/strange-ties-cry.md')
-rw-r--r-- | .changeset/strange-ties-cry.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.changeset/strange-ties-cry.md b/.changeset/strange-ties-cry.md new file mode 100644 index 000000000..0c6139cfc --- /dev/null +++ b/.changeset/strange-ties-cry.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +fix no matched path when using `getStaticPaths` without `prerender` export. |