前提・実現したいこと
現在、Nuxt.js + Google App Engine でSSR のアプリを開発しています。
Google App Engine 上にデプロイしたところ、以下のエラーが発生したので解決したいです。
発生したエラー
Error: Server Error The server encountered an error and could not complete your request. Please try again in 30 seconds.
試したこと
以下のコマンドでエラーログを確認したところ、原因が見つかりました。
gcloud app logs tail
エラーログ
Nuxt Fatal Error Error Cannot find module '@nuxtjs/eslint-module' WARN Module @nuxtjs/eslint-module not found. Please ensure @nuxtjs/eslint-module is in devDependencies and installed. HINT: During build step, for npm/yarn, NODE_ENV=production or --production should NOT be used.
新たに試したこと
以下の記事を参考に、package.jsonファイル内の
@nuxtjs/eslint-module, @nuxtjs/eslint-config をdevDependencies からdependencies に
インストールし直しましたが、解決しませんでした。
Cannot find module '@nuxtjs/eslint-module' inside of Docker container #37
備考
他に参考にした記事
Serving the application fails - Error: Cannot find module '@nuxtjs/eslint-module' #64
Error: Cannot find module '@nuxtjs/eslint-module' #87
nuxt.js × GAE × nuxt-sass-resources-loader で500 Internal Server Error
GAE/Goでdeploy直後500 Server Errorが出た時に見る場所
packagejson
1{ 2 "dependencies": { 3 "@nuxtjs/google-analytics": "^2.4.0", 4 "@nuxtjs/pwa": "^3.0.1", 5 "@nuxtjs/sitemap": "^2.4.0", 6 "eslint-config-prettier": "^7.0.0", 7 "firebase": "^7.18.0", 8 "firebase-tools": "^8.7.0", 9 "hard-source-webpack-plugin": "^0.13.1", 10 "nuxt": "^2.14.7", 11 "prettier": "^2.2.1", 12 "@nuxtjs/vuetify": "^1.11.2", 13 "@nuxtjs/eslint-module": "^2.0.0", 14 "@nuxtjs/eslint-config": "^3.1.0" 15 }, 16 "devDependencies": { 17 "@vue/test-utils": "^1.0.4", 18 "babel-eslint": "^10.1.0", 19 "babel-jest": "^26.3.0", 20 "eslint": "^7.7.0", 21 "eslint-plugin-nuxt": ">=1.0.0", 22 "jest": "^26.4.0", 23 "vue-jest": "^4.0.0-0" 24 } 25}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。