There was an error while loading. Please reload this page.
uploadAppBundle
1 parent 2c71173 commit c9ca23bCopy full SHA for c9ca23b
1 file changed
packages/cli/src/bin/utils/uploadAppBundle.ts
@@ -19,7 +19,7 @@ export const uploadAppBundle = async (endpoint: string, bundle: string) => {
19
20
const requestBundle = await fetch(endpoint, {
21
method: 'POST',
22
- body: state.buffer,
+ body: new Uint8Array(state.buffer),
23
headers: {
24
Authorization: `Bearer ${process.env.FUSION_TOKEN}`,
25
'Content-Type': 'application/zip',
0 commit comments