this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: add missing `await`s (#958)

authored by

Victor Berchet and committed by
GitHub
7edf91c7 00603993

+8 -3
+5
.changeset/full-years-admire.md
··· 1 + --- 2 + "@opennextjs/cloudflare": patch 3 + --- 4 + 5 + fix: add missing `await`s
+3 -3
packages/cloudflare/src/cli/build/build.ts
··· 63 63 64 64 compileCache(options); 65 65 compileEnvFiles(options); 66 - compileInit(options, wranglerConfig); 67 - compileImages(options); 68 - compileSkewProtection(options, config); 66 + await compileInit(options, wranglerConfig); 67 + await compileImages(options); 68 + await compileSkewProtection(options, config); 69 69 70 70 // Compile middleware 71 71 await createMiddleware(options, { forceOnlyBuildOnce: true });