diff options
Diffstat (limited to 'packages/integrations/vercel/CHANGELOG.md')
-rw-r--r-- | packages/integrations/vercel/CHANGELOG.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md index 1adbfbe62..4bec34fa2 100644 --- a/packages/integrations/vercel/CHANGELOG.md +++ b/packages/integrations/vercel/CHANGELOG.md @@ -1,5 +1,23 @@ # @astrojs/vercel +## 7.5.0 + +### Minor Changes + +- [#10513](https://github.com/withastro/astro/pull/10513) [`a573cc199a00d35410197ba4117c97764a984dc0`](https://github.com/withastro/astro/commit/a573cc199a00d35410197ba4117c97764a984dc0) Thanks [@tk04](https://github.com/tk04)! - The `isr.exclude` configuration can now include routes with dynamic and spread parameters. + ```ts + export default defineConfig({ + adapter: vercel({ + isr: { + exclude: [ + "/blog/[title]" + "/api/[...slug]", + ] + } + }) + }) + ``` + ## 7.4.1 ### Patch Changes |