From 9f8aea5a4c372ad526ca8b8f29ee16217c46dbca Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Mon, 2 Apr 2018 00:07:57 +0430 Subject: [PATCH] fix: fatal error on nuxt ready --- lib/core/nuxt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/nuxt.js b/lib/core/nuxt.js index 3c3f71adc3..82d865ed97 100644 --- a/lib/core/nuxt.js +++ b/lib/core/nuxt.js @@ -40,7 +40,7 @@ export default class Nuxt { ) this._ready = this.ready().catch(err => { - logger.error(err) + logger.fatal(err) }) }