We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf5a81a commit 1da6ec0Copy full SHA for 1da6ec0
.github/workflows/deploy.yml
@@ -35,7 +35,7 @@ jobs:
35
run: |
36
cp scripts/deploy.sh ./deploy.sh
37
zip -r deploy.zip .env docker-compose.yml deploy.sh appspec.yml \
38
- Dockerfile package.json package-lock.json next.config.mjs \
+ Dockerfile package.json package-lock.json next.config.ts \
39
pages public .next
40
41
- name: Configure AWS credentials
Dockerfile
@@ -13,8 +13,8 @@ COPY .env ./
13
# 이후 전체 파일 복사
14
COPY . .
15
16
-# next.config.mjs 확인
17
-RUN cat next.config.mjs
+# next.config.ts 확인
+RUN cat next.config.ts
18
19
# 빌드 실행 (output: export가 있는지 확인)
20
# 명시적으로 next build 명령 사용
0 commit comments