質問編集履歴
3
エラー文の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -51,6 +51,10 @@
|
|
51
51
|
Nuxt Fatal Error
|
52
52
|
|
53
53
|
Error Cannot find module '@nuxtjs/eslint-module'
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
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.
|
54
58
|
|
55
59
|
```
|
56
60
|
|
2
リンク先のタイトルを追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -68,7 +68,7 @@
|
|
68
68
|
|
69
69
|
|
70
70
|
|
71
|
-
[
|
71
|
+
[Cannot find module '@nuxtjs/eslint-module' inside of Docker container #37](https://github.com/nuxt-community/eslint-module/issues/37)
|
72
72
|
|
73
73
|
|
74
74
|
|
@@ -78,13 +78,13 @@
|
|
78
78
|
|
79
79
|
他に参考にした記事
|
80
80
|
|
81
|
-
[
|
81
|
+
[Serving the application fails - Error: Cannot find module '@nuxtjs/eslint-module' #64](https://github.com/nuxt/vercel-builder/issues/64)
|
82
82
|
|
83
|
-
[
|
83
|
+
[Error: Cannot find module '@nuxtjs/eslint-module' #87](https://github.com/nuxt/eslint-plugin-nuxt/issues/87)
|
84
84
|
|
85
|
-
[
|
85
|
+
[nuxt.js × GAE × nuxt-sass-resources-loader で500 Internal Server Error](https://qiita.com/ykoizumi0903/items/55fd678d261a8c308f0f)
|
86
86
|
|
87
|
-
[
|
87
|
+
[GAE/Goでdeploy直後500 Server Errorが出た時に見る場所](https://medium.com/@timakin/gae-go%E3%81%A7deploy%E7%9B%B4%E5%BE%8C500-server-error%E3%81%8C%E5%87%BA%E3%81%9F%E6%99%82%E3%81%AB%E8%A6%8B%E3%82%8B%E5%A0%B4%E6%89%80-7397232b4ab8)
|
88
88
|
|
89
89
|
|
90
90
|
|
1
test
CHANGED
File without changes
|
test
CHANGED
@@ -9,3 +9,135 @@
|
|
9
9
|
|
10
10
|
|
11
11
|
### 発生したエラー
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
```
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
Error: Server Error
|
20
|
+
|
21
|
+
The server encountered an error and could not complete your request.
|
22
|
+
|
23
|
+
Please try again in 30 seconds.
|
24
|
+
|
25
|
+
```
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
### 試したこと
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
以下のコマンドでエラーログを確認したところ、原因が見つかりました。
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
```
|
38
|
+
|
39
|
+
gcloud app logs tail
|
40
|
+
|
41
|
+
```
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
### エラーログ
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
```
|
50
|
+
|
51
|
+
Nuxt Fatal Error
|
52
|
+
|
53
|
+
Error Cannot find module '@nuxtjs/eslint-module'
|
54
|
+
|
55
|
+
```
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
### 新たに試したこと
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
以下の記事を参考に、package.jsonファイル内の
|
64
|
+
|
65
|
+
@nuxtjs/eslint-module, @nuxtjs/eslint-config をdevDependencies からdependencies に
|
66
|
+
|
67
|
+
インストールし直しましたが、解決しませんでした。
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
[リンク内容](https://github.com/nuxt-community/eslint-module/issues/37)
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
### 備考
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
他に参考にした記事
|
80
|
+
|
81
|
+
[リンク内容](https://github.com/nuxt/vercel-builder/issues/64)
|
82
|
+
|
83
|
+
[リンク内容](https://github.com/nuxt/eslint-plugin-nuxt/issues/87)
|
84
|
+
|
85
|
+
[リンク内容](https://qiita.com/ykoizumi0903/items/55fd678d261a8c308f0f)
|
86
|
+
|
87
|
+
[リンク内容](https://medium.com/@timakin/gae-go%E3%81%A7deploy%E7%9B%B4%E5%BE%8C500-server-error%E3%81%8C%E5%87%BA%E3%81%9F%E6%99%82%E3%81%AB%E8%A6%8B%E3%82%8B%E5%A0%B4%E6%89%80-7397232b4ab8)
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
```packagejson
|
92
|
+
|
93
|
+
{
|
94
|
+
|
95
|
+
"dependencies": {
|
96
|
+
|
97
|
+
"@nuxtjs/google-analytics": "^2.4.0",
|
98
|
+
|
99
|
+
"@nuxtjs/pwa": "^3.0.1",
|
100
|
+
|
101
|
+
"@nuxtjs/sitemap": "^2.4.0",
|
102
|
+
|
103
|
+
"eslint-config-prettier": "^7.0.0",
|
104
|
+
|
105
|
+
"firebase": "^7.18.0",
|
106
|
+
|
107
|
+
"firebase-tools": "^8.7.0",
|
108
|
+
|
109
|
+
"hard-source-webpack-plugin": "^0.13.1",
|
110
|
+
|
111
|
+
"nuxt": "^2.14.7",
|
112
|
+
|
113
|
+
"prettier": "^2.2.1",
|
114
|
+
|
115
|
+
"@nuxtjs/vuetify": "^1.11.2",
|
116
|
+
|
117
|
+
"@nuxtjs/eslint-module": "^2.0.0",
|
118
|
+
|
119
|
+
"@nuxtjs/eslint-config": "^3.1.0"
|
120
|
+
|
121
|
+
},
|
122
|
+
|
123
|
+
"devDependencies": {
|
124
|
+
|
125
|
+
"@vue/test-utils": "^1.0.4",
|
126
|
+
|
127
|
+
"babel-eslint": "^10.1.0",
|
128
|
+
|
129
|
+
"babel-jest": "^26.3.0",
|
130
|
+
|
131
|
+
"eslint": "^7.7.0",
|
132
|
+
|
133
|
+
"eslint-plugin-nuxt": ">=1.0.0",
|
134
|
+
|
135
|
+
"jest": "^26.4.0",
|
136
|
+
|
137
|
+
"vue-jest": "^4.0.0-0"
|
138
|
+
|
139
|
+
}
|
140
|
+
|
141
|
+
}
|
142
|
+
|
143
|
+
```
|