We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
configResolved
1 parent b44c493 commit ef89f80Copy full SHA for ef89f80
packages/vite/src/node/config.ts
@@ -718,9 +718,11 @@ export async function resolveConfig(
718
)
719
720
// run configResolved hooks
721
- createPluginHookUtils(resolvedWorkerPlugins)
722
- .getSortedPluginHooks('configResolved')
723
- .map((hook) => hook(workerResolved))
+ await Promise.all(
+ createPluginHookUtils(resolvedWorkerPlugins)
+ .getSortedPluginHooks('configResolved')
724
+ .map((hook) => hook(workerResolved)),
725
+ )
726
727
return resolvedWorkerPlugins
728
}
0 commit comments