The SDK read process.env directly, which does not exist in the browser. Workaround: define process.env in vite.config via the `define` option. Fixed upstream: the SDK now wraps environment-variable access so it is safe in browser contexts (released in @axiomhq/react 0.1.5); upgrading resolves it. Si…
The SDK's fetch client sent `cache: 'no-cache'` on ingestion requests, a cache mode Cloudflare Workers had not implemented. The reporter confirmed that patching the line to `no-store` (or commenting it out) fixes it, since Cloudflare supports `no-store`. Fixed upstream: @axiomhq/js version 1.3.1 swi…
The SDK did not catch network errors from ingest, so any ingestion failure (outage, expired/invalid token) became an uncaught exception that took down the process. Maintainers released new versions of @axiomhq/js and @axiomhq/pino that catch ingestion exceptions internally (surfacing them via consol…
The package's ESM build used `export *` re-exports that Vite's SSR module runner could not parse. Fixed upstream in axiom-js PR #56 (switched to named exports) with follow-up build fixes in PR #63: upgrade @axiomhq/js past 0.1.2/0.1.3 and the import resolves. The maintainer confirmed the fix and clo…
The SDK read process.env directly, which does not exist in the browser. Workaround: define process.env in vite.config via the `define` option. Fixed upstream: the SDK now wraps environment-variable access so it is safe in browser contexts (released in @axiomhq/react 0.1.5); upgrading resolves it. Si…
The SDK's fetch client sent `cache: 'no-cache'` on ingestion requests, a cache mode Cloudflare Workers had not implemented. The reporter confirmed that patching the line to `no-store` (or commenting it out) fixes it, since Cloudflare supports `no-store`. Fixed upstream: @axiomhq/js version 1.3.1 swi…
The SDK did not catch network errors from ingest, so any ingestion failure (outage, expired/invalid token) became an uncaught exception that took down the process. Maintainers released new versions of @axiomhq/js and @axiomhq/pino that catch ingestion exceptions internally (surfacing them via consol…
The package's ESM build used `export *` re-exports that Vite's SSR module runner could not parse. Fixed upstream in axiom-js PR #56 (switched to named exports) with follow-up build fixes in PR #63: upgrade @axiomhq/js past 0.1.2/0.1.3 and the import resolves. The maintainer confirmed the fix and clo…