Patch Changes
-
#13105
ff41b07Thanks @petebacondarwin! - fix: resolve TypeError: createRenderer is not a function when built with Vite 8Vite 8 switched its bundler from Rollup to rolldown. The
@cloudflare/style-providerpackage ships a hybrid ESM+CJS build (itses/directory usesrequire()internally), which rolldown mishandles by generating an anonymous, unreachable module initializer — leavingcreateRendererasundefinedat runtime.Fixed by aliasing
@cloudflare/style-providerto its CJS entry (lib/index.js) invite.config.ts. Rolldown handles plain CJS correctly via its interop layer.