On this pagecreateWorkerBuildOptionsOverviewcreateWorkerBuildOptions(entryPoints, outfile?): `BuildOptions`ESBuild options for the Worker bundle.The Worker runtime on Cloudflare Pages may differ from a standard Worker deployment.If you're encountering runtime errors, consider adding the ReadableStream polyfill:import esbuild from 'esbuild'esbuild.build({ ...workerBuildOptions, inject: [require.resolve('keywork/polyfills/ReadableStream')],})ParametersNameTypeDefault valueentryPointsstring[]undefinedoutfilestringBundledFileNameReturnsBuildOptionsDefined inbundling/esbuild/functions/createWorkerBuildOptions.ts:37
ESBuild options for the Worker bundle.
The Worker runtime on Cloudflare Pages may differ from a standard Worker deployment.
If you're encountering runtime errors, consider adding the ReadableStream polyfill: