Skip to content
Compare
Choose a tag to compare
@astrobot-houston astrobot-houston released this 28 Mar 18:23
· 1378 commits to main since this release
0ff5d72

Minor Changes

  • #10513 a573cc199a00d35410197ba4117c97764a984dc0 Thanks @tk04! - The isr.exclude configuration can now include routes with dynamic and spread parameters.
    export default defineConfig({
        adapter: vercel({
            isr: {
                exclude: [
                    "/blog/[title]"
                    "/api/[...slug]",
                ]
            }
        })
    })