summaryrefslogtreecommitdiff
path: root/.changeset/angry-lamps-cheer.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/angry-lamps-cheer.md')
-rw-r--r--.changeset/angry-lamps-cheer.md17
1 files changed, 0 insertions, 17 deletions
diff --git a/.changeset/angry-lamps-cheer.md b/.changeset/angry-lamps-cheer.md
deleted file mode 100644
index d8bdee813..000000000
--- a/.changeset/angry-lamps-cheer.md
+++ /dev/null
@@ -1,17 +0,0 @@
----
-"@astrojs/vercel": minor
----
-
-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]",
- ]
- }
- })
-})
-```