We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63e78d2 commit 443aad5Copy full SHA for 443aad5
src/plugins/transform.ts
@@ -84,7 +84,7 @@ async function downloadScript(opts: {
84
encoding = r.headers.get('content-encoding')
85
const contentLength = r.headers.get('content-length')
86
size = contentLength ? Number(contentLength) / 1024 : 0
87
- return r.arrayBuffer()
+ return r._data || r.arrayBuffer()
88
}).then(r => Buffer.from(r))
89
90
await storage.setItemRaw(`bundle:${filename}`, res)
0 commit comments