0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

Add compatibility with cloudflare node (#8925)

This commit is contained in:
brandonsdebt 2023-11-16 14:47:46 +01:00 committed by GitHub
parent 1862fb44eb
commit ac5633b8f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
"@astrojs/react": patch
---
Uses `node:stream` during server rendering for compatibility with Cloudflare

View file

@ -53,7 +53,7 @@ async function check(Component, props, children) {
}
async function getNodeWritable() {
let nodeStreamBuiltinModuleName = 'stream';
let nodeStreamBuiltinModuleName = 'node:stream';
let { Writable } = await import(/* @vite-ignore */ nodeStreamBuiltinModuleName);
return Writable;
}