We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
await
1 parent 0060399 commit 7edf91cCopy full SHA for 7edf91c
.changeset/full-years-admire.md
@@ -0,0 +1,5 @@
1
+---
2
+"@opennextjs/cloudflare": patch
3
4
+
5
+fix: add missing `await`s
packages/cloudflare/src/cli/build/build.ts
@@ -63,9 +63,9 @@ export async function build(
63
64
compileCache(options);
65
compileEnvFiles(options);
66
- compileInit(options, wranglerConfig);
67
- compileImages(options);
68
- compileSkewProtection(options, config);
+ await compileInit(options, wranglerConfig);
+ await compileImages(options);
+ await compileSkewProtection(options, config);
69
70
// Compile middleware
71
await createMiddleware(options, { forceOnlyBuildOnce: true });
0 commit comments