質問編集履歴

2

code add

2021/09/26 06:10

投稿

pokemonta
pokemonta

スコア170

title CHANGED
File without changes
body CHANGED
@@ -48,4 +48,21 @@
48
48
  public
49
49
  |_ vercel.svg
50
50
  package.json
51
- tsconfig.json
51
+ tsconfig.json
52
+
53
+ ```packagejson
54
+
55
+ {
56
+ "private": true,
57
+ "scripts": {
58
+ "dev": "next dev",
59
+ "build": "next build",
60
+ "start": "next start",
61
+ "export": "next build && next export",
62
+ "type-check": "tsc --pretty --noEmit",
63
+ "format": "prettier --write .",
64
+ "lint": "eslint . --ext ts --ext tsx --ext js",
65
+ "test": "jest",
66
+ "test-all": "yarn lint && yarn type-check && yarn test"
67
+ },
68
+ ```

1

状況追加

2021/09/26 06:10

投稿

pokemonta
pokemonta

スコア170

title CHANGED
File without changes
body CHANGED
@@ -38,4 +38,14 @@
38
38
  Error: Process completed with exit code 255.
39
39
  ```
40
40
 
41
- バケット名は確かに存在しています。対応方法をご教示願います。
41
+ バケット名は確かに存在しています。対応方法をご教示願います。
42
+
43
+ Git Hubのソースは、チュートリアルのものを使用していて、何も修正を加えていません。
44
+ そのそもどのファイルをビルドしてS3に持って行っているのでしょうか?
45
+ 私の推測は、out or buildフォルダみたいなものが作られて、それだけをコピーされるイメージです
46
+ pages
47
+ |_ index.tsx
48
+ public
49
+ |_ vercel.svg
50
+ package.json
51
+ tsconfig.json