Skip to content

@cloudflare/vite-plugin@1.41.0

Choose a tag to compare

@workers-devprod workers-devprod released this 16 Jun 15:36
· 11 commits to main since this release
89a753e

Minor Changes

  • #14279 e6e4b07 Thanks @jamesopstad! - Add experimental.newConfig.cfBuildOutput option to support future deployments via the cf CLI

    // vite.config.ts
    import { defineConfig } from "vite";
    import { cloudflare } from "@cloudflare/vite-plugin";
    
    export default defineConfig({
      plugins: [
        cloudflare({
          experimental: {
            newConfig: {
              cfBuildOutput: true,
            },
          },
        }),
      ],
    });

Patch Changes