File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ cp .env.example .env
194
194
# Edit .env with your API URL (default: http://localhost:8000)
195
195
```
196
196
197
- The frontend ` .env.local ` should contain:
197
+ The frontend ` .env ` should contain:
198
198
199
199
``` env
200
200
NEXT_PUBLIC_API_URL=http://localhost:8000
@@ -354,7 +354,7 @@ EMAIL_PROVIDER="sendgrid" # Options: "sendgrid" or "smtp"
354
354
ENCRYPTION_KEY=" your-encryption-key"
355
355
```
356
356
357
- ### Frontend Configuration (.env.local file)
357
+ ### Frontend Configuration (.env file)
358
358
359
359
``` bash
360
360
# API Configuration
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ RUN npm install -g pnpm
11
11
12
12
# Install dependencies first (caching)
13
13
COPY package.json pnpm-lock.yaml ./
14
- RUN pnpm install --frozen-lockfile
14
+ RUN pnpm install --no- frozen-lockfile
15
15
16
16
# Instalar explicitamente o next-runtime-env
17
17
RUN pnpm add next-runtime-env
@@ -37,7 +37,7 @@ RUN npm install -g pnpm
37
37
38
38
# Install production dependencies only
39
39
COPY package.json pnpm-lock.yaml ./
40
- RUN pnpm install --prod --frozen-lockfile
40
+ RUN pnpm install --prod --no- frozen-lockfile
41
41
42
42
# Instalar explicitamente o next-runtime-env na produção
43
43
RUN pnpm add next-runtime-env
You can’t perform that action at this time.
0 commit comments