We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d594ce6 commit 43479a2Copy full SHA for 43479a2
packages/@vuepress/core/lib/prepare/AppContext.js
@@ -93,9 +93,11 @@ module.exports = class AppContext {
93
)
94
95
await this.pluginAPI.options.ready.apply()
96
- await this.pluginAPI.options.clientDynamicModules.apply(this)
97
- await this.pluginAPI.options.globalUIComponents.apply(this)
98
- await this.pluginAPI.options.enhanceAppFiles.apply(this)
+ await Promise.all([
+ this.pluginAPI.options.clientDynamicModules.apply(this),
+ this.pluginAPI.options.enhanceAppFiles.apply(this),
99
+ this.pluginAPI.options.globalUIComponents.apply(this)
100
+ ])
101
}
102
103
/**
0 commit comments