Skip to content

@opennextjs/[email protected]

Compare
Choose a tag to compare
@workers-frameworks workers-frameworks released this 27 Feb 20:30
· 237 commits to main since this release
4755714

Patch Changes

  • #412 58b200f Thanks @dario-piotrowicz! - add defineCloudflareConfig utility

    this change adds a new defineCloudflareConfig utility that developers can use in their open-next.config.ts
    file to easily generate a configuration compatible with the adapter

    Example usage:

    // open-next.config.ts
    import { defineCloudflareConfig } from "@opennextjs/cloudflare";
    import kvIncrementalCache from "@opennextjs/cloudflare/kv-cache";
    
    export default defineCloudflareConfig({
      incrementalCache: kvIncrementalCache,
    });