Skip to content

Commit 92be53b

Browse files
committed
fix: eventsource proxy write timeout
1 parent 27b3458 commit 92be53b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/prod-deploy.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ jobs:
5959
ECR_REPOSITORY: ${{ secrets.REPOSITORY }}
6060
IMAGE_TAG: ${{ vars.IMAGE_TAG }}
6161
run: |
62-
cat .env
6362
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
6463
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
6564

next.config.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ import type { NextConfig } from 'next'
33
const nextConfig: NextConfig = {
44
output: 'standalone',
55

6+
experimental: {
7+
// for event source stream
8+
proxyTimeout: 0,
9+
},
10+
611
/* config options here */
712
env: {
813
API_URL: process.env.API_URL,

0 commit comments

Comments
 (0)