github withastro/astro @astrojs/cloudflare@7.0.0-beta.2

latest releases: astro@4.15.9, astro@4.15.8, @astrojs/mdx@3.1.7...
pre-release13 months ago

Major Changes

  • #8078 2540feedb Thanks @alexanderniebuhr! - The configuration build.split and build.excludeMiddleware are deprecated.

    You can now configure this behavior using functionPerRoute in your Cloudflare integration config:

    import {defineConfig} from "astro/config";
    import cloudflare from '@astrojs/cloudflare';
    
    export default defineConfig({
    -    build: {
    -        split: true
    -    },
    -    adapter: cloudflare()
    +    adapter: cloudflare({
    +        mode: 'directory',
    +        functionPerRoute: true
    +    })
    })

Patch Changes

Don't miss a new astro release

NewReleases is sending notifications on new releases.