mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-23 14:15:13 +00:00
fix(builder): await for renderer to load resources (#5341)
This commit is contained in:
parent
95f2a125cf
commit
caf5198430
@ -140,7 +140,7 @@ export default class VueRenderer {
|
|||||||
// Try once to load SSR resources from fs
|
// Try once to load SSR resources from fs
|
||||||
await this.loadResources(fs)
|
await this.loadResources(fs)
|
||||||
|
|
||||||
// Without using `nuxt start` (Programmatic, Tests and Generate)
|
// Without using `nuxt start` (programmatic, tests and generate)
|
||||||
if (!this.context.options._start) {
|
if (!this.context.options._start) {
|
||||||
this.context.nuxt.hook('build:resources', () => this.loadResources(fs))
|
this.context.nuxt.hook('build:resources', () => this.loadResources(fs))
|
||||||
return
|
return
|
||||||
|
@ -173,6 +173,9 @@ export class WebpackBundler {
|
|||||||
// Actual error will be printed by webpack
|
// Actual error will be printed by webpack
|
||||||
throw new Error('Nuxt Build Error')
|
throw new Error('Nuxt Build Error')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Await for renderer to load resources (programmatic, tests and generate)
|
||||||
|
await nuxt.callHook('build:resources')
|
||||||
}
|
}
|
||||||
|
|
||||||
async webpackDev(compiler) {
|
async webpackDev(compiler) {
|
||||||
|
Loading…
Reference in New Issue
Block a user