mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
Fix error object
This commit is contained in:
parent
2a005308d2
commit
6ab20cc6b6
@ -148,10 +148,9 @@ export function renderAndGetWindow (url, opts = {}) {
|
|||||||
window.scrollTo = function () {}
|
window.scrollTo = function () {}
|
||||||
// If Nuxt could not be loaded (error from the server-side)
|
// If Nuxt could not be loaded (error from the server-side)
|
||||||
if (!window.__NUXT__) {
|
if (!window.__NUXT__) {
|
||||||
return reject(new Error({
|
let error = new Error('Could not load the nuxt app')
|
||||||
message: 'Could not load the nuxt app',
|
error.body = window.document.getElementsByTagName('body')[0].innerHTML
|
||||||
body: window.document.getElementsByTagName('body')[0].innerHTML
|
return reject(error)
|
||||||
}))
|
|
||||||
}
|
}
|
||||||
// Used by nuxt.js to say when the components are loaded and the app ready
|
// Used by nuxt.js to say when the components are loaded and the app ready
|
||||||
window.onNuxtReady(() => {
|
window.onNuxtReady(() => {
|
||||||
|
Loading…
Reference in New Issue
Block a user