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 27b3458 commit 92be53bCopy full SHA for 92be53b
.github/workflows/prod-deploy.yml
@@ -59,7 +59,6 @@ jobs:
59
ECR_REPOSITORY: ${{ secrets.REPOSITORY }}
60
IMAGE_TAG: ${{ vars.IMAGE_TAG }}
61
run: |
62
- cat .env
63
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
64
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
65
next.config.ts
@@ -3,6 +3,11 @@ import type { NextConfig } from 'next'
3
const nextConfig: NextConfig = {
4
output: 'standalone',
5
6
+ experimental: {
7
+ // for event source stream
8
+ proxyTimeout: 0,
9
+ },
10
+
11
/* config options here */
12
env: {
13
API_URL: process.env.API_URL,
0 commit comments