Skip to content

Commit cf75ec5

Browse files
committed
fix: resolve remaining 3 deploy failures
- starter-langgraph-python: use next build --webpack (Turbopack default in Next 16 can't handle serverExternalPackages) - starter-crewai-crews: bump ag-ui-protocol>=0.1.10 to match ag-ui-crewai 0.1.5 requirement - shell-dojolike: add recharts dependency (used by shared frontend)
1 parent 5aed8ee commit cf75ec5

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
crewai==0.130.0
22
ag-ui-crewai>=0.1.5
3-
ag-ui-protocol==0.1.5
3+
ag-ui-protocol>=0.1.10
44
python-dotenv==1.0.1
55
uvicorn==0.34.3
66
crewai-tools~=0.47.1

examples/integrations/langgraph-python/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ COPY docker-route-override.ts ./apps/app/src/app/api/copilotkit/route.ts
1919
RUN pnpm --filter @repo/app add @ag-ui/client
2020

2121
ENV NODE_OPTIONS="--max-old-space-size=4096"
22-
RUN pnpm --filter @repo/app exec next build --no-turbopack
22+
# Next.js 16+ uses Turbopack by default; use --webpack for serverExternalPackages compat
23+
RUN pnpm --filter @repo/app exec next build --webpack
2324

2425
# Stage 2: Production image with Python + Node
2526
FROM python:3.12.10-slim AS runner

showcase/shell-dojolike/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"react": "^19.0.0",
1515
"react-dom": "^19.0.0",
1616
"react-syntax-highlighter": "^15.6.0",
17+
"recharts": "^2.15.0",
1718
"zod": "^3.24.4"
1819
},
1920
"devDependencies": {

0 commit comments

Comments
 (0)