Conversation
- Migrate from Nuxt/Vue to Next.js/React - Same repo, dev-pr branch has shared history with main for PR
Contributor
There was a problem hiding this comment.
Pull request overview
This PR replaces the entire Nuxt 3 + Vue 3 codebase with a Next.js 16 + React 19 implementation while maintaining the same feature set and i18n structure. The migration includes updated GitHub workflows adapted for Next.js builds and simplified PR/issue templates.
Changes:
- Migrated from Nuxt 3/Vue 3 to Next.js 16/React 19 with App Router
- Converted Vue components to React/TSX (shadcn-vue → shadcn + Radix)
- Replaced composables with React hooks and contexts
- Updated build workflow to output
.nextinstead of.output
Reviewed changes
Copilot reviewed 112 out of 834 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
components/object/path-links.vue |
Removed Vue component for object path navigation |
components/object/object-view.tsx |
Added React component for displaying object details |
components/object/object-path-links.tsx |
Added React breadcrumb navigation for object paths |
components/object/object-new-form.tsx |
Added React form for creating new objects/folders |
components/object/object-info.tsx |
Added React drawer for object info display |
components/language-switcher.tsx |
Converted language selector from Vue to React |
components/links/github.tsx |
Converted GitHub link component to React |
components/app-sidebar.tsx |
Migrated sidebar navigation to React |
components/data-table/data-table.tsx |
Converted data table component to React with TanStack Table |
components/dashboard-auth-guard.tsx |
Added React auth guard for dashboard routes |
components/copy-input.tsx |
Converted copy-to-clipboard input to React |
components/access-keys/change-password.tsx |
Migrated password change dialog to React |
components.json |
Updated shadcn config for React (Radix) instead of Vue |
app/layout.tsx |
Added Next.js root layout with providers |
app/(dashboard)/layout.tsx |
Added dashboard layout with sidebar |
app/(dashboard)/browser/page.tsx |
Migrated bucket browser page to Next.js |
app/(auth)/config/page.tsx |
Added server configuration page |
.github/workflows/build.yml |
Updated CI to build Next.js instead of Nuxt |
.github/workflows/release.yml |
Updated release workflow for .next artifacts |
README.md |
Updated to Next.js quick-start template |
.prettierrc.ts |
Removed Prettier config (no longer needed) |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…aws4fetch, upload-task, hooks)
…ect, refs, static-components, preserve-memoization)
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.
Replace the existing Nuxt/Vue console with the Next.js/React version (console-new). This PR is a full codebase migration: same feature set and i18n structure, new stack (Next.js 16, React 19, App Router) and simplified GitHub templates.
app/(auth)/,app/(dashboard)/)use-bucket,auth-context,s3-context).github/workflows and templates copied from old project, build workflow adapted for Next.js (.nextoutput); PR/issue templates simplified (no emoji, fewer sections)Existing
mainis backed up asbackup/main. This PR does not changebackup/mainordev.Type of Change
Testing
Checklist
Related Issues
Closes #
Screenshots (if applicable)
N/A — same UI/UX as before; layout and flows preserved.
Additional Notes
backup/main.mainwill be the Next.js app;devcan be updated from local console-new viagit push origin main:devor by syncing withmain.