7
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

nuxtをGAEにアップした際にServer Errorになったときの対処法

Posted at

GAE!GAE!GAE! nuxtを手軽にアップするならGAE!

ということでGAEにアップしてみました。
しかし、Server Error(500エラー)。

そんな貴方と私に対処法をお教え致します。
それぞれのバージョンは以下の通り。

▶︎︎ node -v                                                                     
v12.1.0
▶︎︎ nuxt -v  (こんなコマンドはない)
v2.12.2

純粋にGAEにアップする方法をお探したの方は以下

###さて本題、エラーの原因を調べる。
GAEにはエラーを調べるために非常に便利なコマンドがあります。
sudo gcloud app logs tail -s default
これでログが出せました。

Error: Cannot find module 'vuetify/es5/util/colors'
Require stack:
- /workspace/nuxt.config.js
- /workspace/server/index.js
    at Function.Module._resolveFilename (internal/modules/cjs/loader.js:957:15)
    at Function.Module._load (internal/modules/cjs/loader.js:840:27)
    at Module.require (internal/modules/cjs/loader.js:1019:19)
    at require (internal/modules/cjs/helpers.js:77:18)
    at Object.<anonymous> (/workspace/nuxt.config.js:1:78)
    at Module._compile (internal/modules/cjs/loader.js:1133:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1153:10)
    at Module.load (internal/modules/cjs/loader.js:977:32)
    at Function.Module._load (internal/modules/cjs/loader.js:877:14)
    at Module.require (internal/modules/cjs/loader.js:1019:19) {
  code: 'MODULE_NOT_FOUND',
  requireStack: [ '/workspace/nuxt.config.js', '/workspace/server/index.js' ]
}

なるほど、vuetifyのエラーのようです。
色々と調べていると、package.jsonの@nuxtjs/vuetifyが
devDependencies にあるのがエラーの根源らしい。

ということでdependencies に移動させて完了

### Have a good life!

7
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?