Skip to content

Commit

Permalink
update changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
lilnasy committed Mar 28, 2024
1 parent d7e2915 commit 4ad07a0
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .changeset/angry-lamps-cheer.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,16 @@
"@astrojs/vercel": minor
---

Allow dynamic route segments in isr.exclude array
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]",
]
}
})
})
```

0 comments on commit 4ad07a0

Please sign in to comment.