[Migration] Frontend integration#325
Merged
chelojimenez merged 2 commits intomigration-phase3-completefrom Aug 4, 2025
Merged
Conversation
chelojimenez
added a commit
that referenced
this pull request
Aug 4, 2025
- Phase 1: Hono server foundation (PR #320) - Phase 2: Port all MCP endpoints from Next.js to Hono (PR #323) - Phase 3: Chat streaming endpoint migration (PR #324) - Phase 4: Frontend integration with Vite (PR #325) - Phase 5: Static assets & production build (PR #326) - Phase 6: NPX integration & final polish (PR #327) Architecture: Single server (API + static), ready for NPX distribution
khandrew1
pushed a commit
that referenced
this pull request
Nov 15, 2025
- Phase 1: Hono server foundation (PR #320) - Phase 2: Port all MCP endpoints from Next.js to Hono (PR #323) - Phase 3: Chat streaming endpoint migration (PR #324) - Phase 4: Frontend integration with Vite (PR #325) - Phase 5: Static assets & production build (PR #326) - Phase 6: NPX integration & final polish (PR #327) Architecture: Single server (API + static), ready for NPX distribution
matteo8p
pushed a commit
that referenced
this pull request
Dec 30, 2025
* Frontend integration * fix imports
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Next.js src/ to Vite client/src/
- Removed "use client" directives from all files
- Replaced Next.js Image component with standard
provider-logo.tsx:21-28)
- Removed Next.js specific imports like next/link
required frontend dependencies from the original Next.js project
(React 19, UI libraries, state management)
- Configured proxy in vite.config.ts:16-21 to route /api calls to
Hono server (http://localhost:8001)
- Set up build output to ../dist/client
(/api/mcp/*) that match the Hono server routes, so no endpoint
changes were needed