[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-labs-cra-to-next-migration":3,"mdc-yvherb-key":36,"related-repo-vercel-labs-cra-to-next-migration":3847,"related-org-vercel-labs-cra-to-next-migration":3856},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"cra-to-next-migration","migrate Create React App to Next.js","Comprehensive guide for migrating Create React App (CRA) projects to Next.js. Use when migrating a CRA app, converting React Router to file-based routing, or adopting Next.js patterns like Server Components, App Router, or image optimization.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel-labs","Vercel Labs","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel-labs.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"React","react","tag",{"name":17,"slug":18,"type":15},"Next.js","next-js",{"name":20,"slug":21,"type":15},"Migration","migration",{"name":23,"slug":24,"type":15},"Frontend","frontend",11,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fmigration-skills","2026-07-17T06:09:00.868076","MIT",3,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"Skills.sh skills for migrating from one framework to another.","https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fmigration-skills\u002Ftree\u002FHEAD\u002Fcra-to-next-migration","---\nname: cra-to-next-migration\ndescription: Comprehensive guide for migrating Create React App (CRA) projects to Next.js. Use when migrating a CRA app, converting React Router to file-based routing, or adopting Next.js patterns like Server Components, App Router, or image optimization.\nlicense: MIT\nmetadata:\n  author: community\n  version: \"1.0.0\"\n---\n\n# CRA to Next.js Migration Guide\n\nComprehensive migration guide for converting Create React App projects to Next.js, covering routing, data fetching, components, styling, and deployment. Contains 148 rules across 17 categories, prioritized by migration impact. After a successful migration the application should work the same as it did before the migration.\n\n## When to Apply\n\nReference these guidelines when:\n\n- Migrating an existing CRA application to Next.js\n- Converting React Router routes to file-based routing\n- Adopting Server Components in a client-heavy app\n- Moving from client-side rendering to SSR\u002FSSG\n- Updating environment variables for Next.js\n- Optimizing images and fonts with Next.js built-ins\n\n## Version Policy\n\n**Use Next.js 16.x or later. Do NOT use Next.js 14.x or 15.x.**\n\nBefore starting migration, check the current latest version:\n\n```bash\nnpm info next version\n```\n\nUse the latest version in your package.json with a caret for minor\u002Fpatch updates. The minimum supported version for this migration guide is `^16.0.0`.\n\n## Rule Categories by Priority\n\n| Priority | Category              | Impact   | Prefix          | Rules |\n| -------- | --------------------- | -------- | --------------- | ----- |\n| 1        | Project Setup         | CRITICAL | `setup-`        | 6     |\n| 2        | Dependencies          | CRITICAL | `deps-`         | 1     |\n| 3        | Routing               | CRITICAL | `routing-`      | 17    |\n| 4        | Data Fetching         | CRITICAL | `data-`         | 11    |\n| 5        | Components            | HIGH     | `components-`   | 9     |\n| 6        | Environment Variables | HIGH     | `env-`          | 6     |\n| 7        | Styling               | HIGH     | `styling-`      | 12    |\n| 8        | Public Assets         | MEDIUM   | `assets-`       | 5     |\n| 9        | Images                | MEDIUM   | `images-`       | 8     |\n| 10       | Fonts                 | MEDIUM   | `fonts-`        | 6     |\n| 11       | SEO & Metadata        | MEDIUM   | `seo-`          | 9     |\n| 12       | API Routes            | MEDIUM   | `api-`          | 9     |\n| 13       | State Management      | MEDIUM   | `state-`        | 8     |\n| 14       | Integrations          | MEDIUM   | `integrations-` | 1     |\n| 15       | Testing               | LOW      | `testing-`      | 9     |\n| 16       | Build & Deploy        | LOW      | `build-`        | 7     |\n| 17       | Common Gotchas        | HIGH     | `gotchas-`      | 24    |\n\n## Quick Reference\n\n### 1. Project Setup (CRITICAL)\n\n- `setup-initial-structure` - Convert CRA folder structure to Next.js App Router\n- `setup-package-json` - Update dependencies and scripts\n- `setup-next-config` - Create and configure next.config.js\n- `setup-typescript` - Migrate TypeScript configuration\n- `setup-eslint` - Update ESLint for Next.js\n- `setup-gitignore` - Update .gitignore for Next.js\n\n### 2. Dependencies (CRITICAL)\n\n- `deps-react19-compatibility` - Upgrade dependencies for React 19 compatibility\n\n### 3. Routing (CRITICAL)\n\n- `routing-basic-pages` - Convert components to file-based routes\n- `routing-dynamic-routes` - Use [param] syntax for dynamic segments\n- `routing-catch-all-routes` - Use [...slug] for catch-all routes\n- `routing-optional-catch-all` - Use [[...slug]] for optional catch-all\n- `routing-route-groups` - Use (group) folders for organization\n- `routing-parallel-routes` - Use @slot for parallel routes\n- `routing-intercepting-routes` - Use (..) for intercepting routes\n- `routing-link-component` - Replace react-router Link with next\u002Flink\n- `routing-programmatic-navigation` - Replace useNavigate with useRouter\n- `routing-use-params` - Replace useParams with Next.js params\n- `routing-use-search-params` - Replace useSearchParams properly\n- `routing-nested-layouts` - Convert nested routes to layouts\n- `routing-loading-states` - Add loading.tsx for suspense\n- `routing-error-boundaries` - Add error.tsx for error handling\n- `routing-not-found` - Add not-found.tsx for 404 pages\n- `routing-hash-based` - Handle hash-based routing for client-only apps\n- `routing-protected-routes` - Implement protected route patterns\n\n### 4. Data Fetching (CRITICAL)\n\n- `data-useeffect-to-rsc` - Convert useEffect fetches to Server Components\n- `data-useeffect-to-ssr` - Convert useEffect to getServerSideProps\n- `data-useeffect-to-ssg` - Convert useEffect to getStaticProps\n- `data-client-fetch` - Keep client fetches with proper patterns\n- `data-server-actions` - Use Server Actions for mutations\n- `data-revalidation` - Configure data revalidation strategies\n- `data-streaming` - Use Suspense for streaming data\n- `data-parallel-fetching` - Fetch data in parallel on server\n- `data-sequential-fetching` - Handle sequential data dependencies\n- `data-caching` - Configure fetch caching behavior\n- `data-client-library-init` - Initialize client-only libraries in useEffect\n\n### 5. Components (HIGH)\n\n- `components-use-client` - Add 'use client' directive for client components\n- `components-server-default` - Understand server components are default\n- `components-boundary-placement` - Place client boundaries strategically\n- `components-composition` - Use composition to minimize client JS\n- `components-interleaving` - Interleave server and client components\n- `components-props-serialization` - Ensure props are serializable\n- `components-children-pattern` - Pass server components as children\n- `components-context-providers` - Handle Context providers properly\n- `components-third-party` - Wrap third-party client components\n\n### 6. Environment Variables (HIGH)\n\n- `env-prefix-change` - Change REACT*APP* to NEXT*PUBLIC*\n- `env-server-only` - Use non-prefixed vars for server-only\n- `env-runtime-config` - Use runtime configuration when needed\n- `env-local-files` - Understand .env file loading order\n- `env-build-time` - Understand build-time vs runtime env vars\n- `env-validation` - Validate required environment variables\n\n### 7. Styling (HIGH)\n\n- `styling-global-css` - Move global CSS to app\u002Flayout.tsx\n- `styling-css-modules` - CSS Modules work with minor changes\n- `styling-sass` - Configure Sass support\n- `styling-tailwind` - Configure Tailwind CSS\n- `styling-css-in-js` - Handle CSS-in-JS libraries\n- `styling-styled-components` - Configure styled-components for SSR\n- `styling-emotion` - Configure Emotion for SSR\n- `styling-component-styles` - Import component styles properly\n- `styling-postcss` - Configure PostCSS\n- `styling-scss-global-syntax` - Use :global only in CSS Modules\n- `styling-css-import-order` - Control CSS import order in layouts\n- `styling-dark-mode-hydration` - Handle dark mode without hydration mismatch\n\n### 8. Public Assets (MEDIUM)\n\n- `assets-public-folder` - Public folder works the same way\n- `assets-static-imports` - Use static imports for assets\n- `assets-absolute-urls` - Reference assets without public prefix\n- `assets-favicon` - Place favicon in app directory\n- `assets-manifest` - Configure web app manifest\n\n### 9. Images (MEDIUM)\n\n- `images-next-image` - Replace img with next\u002Fimage\n- `images-required-dimensions` - Provide width and height\n- `images-fill-prop` - Use fill for responsive images\n- `images-priority` - Use priority for LCP images\n- `images-placeholder` - Configure blur placeholders\n- `images-remote-patterns` - Configure remote image domains\n- `images-loader` - Configure custom image loaders\n- `images-optimization` - Understand automatic optimization\n\n### 10. Fonts (MEDIUM)\n\n- `fonts-next-font` - Use next\u002Ffont for optimization\n- `fonts-google-fonts` - Load Google Fonts properly\n- `fonts-local-fonts` - Load local font files\n- `fonts-variable-fonts` - Configure variable fonts\n- `fonts-font-display` - Configure font-display strategy\n- `fonts-preload` - Understand automatic font preloading\n\n### 11. SEO & Metadata (MEDIUM)\n\n- `seo-metadata-api` - Use Metadata API instead of react-helmet\n- `seo-dynamic-metadata` - Generate dynamic metadata\n- `seo-opengraph` - Configure Open Graph metadata\n- `seo-twitter-cards` - Configure Twitter Card metadata\n- `seo-json-ld` - Add structured data (JSON-LD)\n- `seo-canonical` - Set canonical URLs\n- `seo-robots` - Configure robots meta tags\n- `seo-sitemap` - Generate sitemap.xml\n- `seo-head-component` - Migrate from next\u002Fhead to Metadata\n\n### 12. API Routes (MEDIUM)\n\n- `api-route-handlers` - Create Route Handlers in app\u002Fapi\n- `api-http-methods` - Export named functions for HTTP methods\n- `api-request-body` - Parse request body properly\n- `api-query-params` - Access query parameters\n- `api-headers-cookies` - Access headers and cookies\n- `api-response-types` - Return proper response types\n- `api-middleware` - Implement middleware patterns\n- `api-cors` - Configure CORS properly\n- `api-rate-limiting` - Implement rate limiting\n\n### 13. State Management (MEDIUM)\n\n- `state-context-client` - Context requires 'use client'\n- `state-zustand` - Zustand works with hydration care\n- `state-redux` - Configure Redux with Next.js\n- `state-jotai` - Configure Jotai properly\n- `state-recoil` - Configure Recoil properly\n- `state-url-state` - Use URL for shareable state\n- `state-server-state` - Minimize client state with RSC\n- `state-persistence` - Handle state persistence\n\n### 14. Integrations (MEDIUM)\n\n- `integrations-sentry` - Migrate Sentry error monitoring\n\n### 15. Testing (LOW)\n\n- `testing-jest-config` - Update Jest configuration\n- `testing-react-testing-library` - RTL works the same\n- `testing-server-components` - Test Server Components\n- `testing-client-components` - Test Client Components\n- `testing-async-components` - Test async components\n- `testing-mocking` - Mock Next.js modules\n- `testing-e2e-cypress` - Configure Cypress for Next.js\n- `testing-e2e-playwright` - Configure Playwright for Next.js\n- `testing-api-routes` - Test API Route Handlers\n\n### 16. Build & Deployment (LOW)\n\n- `build-scripts` - Update build scripts\n- `build-output` - Understand build output\n- `build-standalone` - Configure standalone output\n- `build-static-export` - Configure static export\n- `build-bundle-analysis` - Analyze bundle size\n- `build-vercel` - Deploy to Vercel\n- `build-docker` - Configure Docker deployment\n\n### 17. Common Gotchas (HIGH)\n\n- `gotchas-window-undefined` - Handle window\u002Fdocument in SSR\n- `gotchas-hydration-mismatch` - Fix hydration mismatches\n- `gotchas-use-effect-timing` - Understand useEffect in Next.js\n- `gotchas-router-ready` - Check router.isReady for query params\n- `gotchas-dynamic-imports` - Use next\u002Fdynamic properly\n- `gotchas-api-routes-edge` - Edge vs Node.js runtime\n- `gotchas-middleware` - Middleware runs on edge\n- `gotchas-static-generation` - Static vs dynamic rendering\n- `gotchas-redirect` - Handle redirects properly\n- `gotchas-headers` - Set response headers\n- `gotchas-cookies` - Handle cookies in RSC\n- `gotchas-turbopack` - Handle Turbopack compatibility issues\n- `gotchas-empty-modules` - Fix empty module exports for isolatedModules\n- `gotchas-nullish-coalescing` - Fix nullish coalescing runtime errors\n- `gotchas-react19-class-components` - Fix React 19 class component this binding\n- `gotchas-react19-ref-prop` - Handle React 19 ref prop changes\n- `gotchas-websocket-optional-deps` - Handle WebSocket native dependency bundling\n- `gotchas-auth-race-conditions` - Guard against auth\u002FAPI race conditions\n- `gotchas-auth-state-gating` - Wait for auth state before checking roles\n- `gotchas-configuration-idempotency` - Ensure configuration idempotency with useRef\n- `gotchas-hydration-nested-interactive` - Avoid nested interactive elements\n- `gotchas-router-push-timing` - Never call router.push during render\n- `gotchas-infinite-rerender` - Prevent infinite re-render loops\n- `gotchas-provider-hierarchy` - Configure provider hierarchy correctly\n\n## Pre-Migration Checklist\n\nBefore starting migration, scan the codebase for patterns that need special handling:\n\n```bash\n# Check for WebSocket libraries (needs webpack fallback config)\ngrep -E \"(socket\\.io|\\\"ws\\\")\" package.json\n\n# Check for SCSS :export syntax (may need --webpack flag)\ngrep -r \":export\" --include=\"*.scss\" src\u002F\n\n# Check for SVG ReactComponent imports (needs SVGR config)\ngrep -r \"ReactComponent\" --include=\"*.ts\" --include=\"*.tsx\" src\u002F\n\n# List all REACT_APP_ environment variables\ngrep -roh \"REACT_APP_[A-Z_]*\" --include=\"*.ts\" --include=\"*.tsx\" --include=\"*.js\" --include=\"*.jsx\" src\u002F | sort -u\n\n# Check for Redux extraReducers using object notation (must convert to builder pattern for RTK v2)\ngrep -r \"extraReducers:\" --include=\"*.js\" --include=\"*.jsx\" --include=\"*.ts\" --include=\"*.tsx\" src\u002F\n\n# Check for \u002Fapp\u002F paths that need updating if using (app) route group\ngrep -rE \"(href|to|push|replace|redirect).*['\\\"]\\\u002Fapp\\\u002F\" --include=\"*.js\" --include=\"*.jsx\" --include=\"*.ts\" --include=\"*.tsx\" src\u002F\n```\n\n**Scan Results to Rule Mapping:**\n\n| Scan Result                     | Rules to Read                                          |\n| ------------------------------- | ------------------------------------------------------ |\n| socket.io or ws in package.json | `gotchas-websocket-optional-deps`, `setup-next-config` |\n| `:export` in SCSS files         | `gotchas-turbopack`                                    |\n| `ReactComponent` SVG imports    | `assets-static-imports`                                |\n| `REACT_APP_` variables found    | `env-prefix-change`                                    |\n| `extraReducers:` found          | `state-redux` (RTK v2 builder callback required)       |\n| `\u002Fapp\u002F` paths in navigation     | `routing-route-groups` (update paths for route groups) |\n\n## How to Use\n\nRead individual rule files for detailed explanations and code examples:\n\n```\nrules\u002Fsetup-initial-structure.md\nrules\u002Frouting-basic-pages.md\nrules\u002Fdata-useeffect-to-rsc.md\n```\n\nEach rule file contains:\n\n- Brief explanation of the migration step\n- CRA \"before\" code example\n- Next.js \"after\" code example\n- Additional context and gotchas\n\n## Migration Order\n\nFor best results, migrate in this order:\n\n1. **Setup** - Initialize Next.js project structure\n2. **Routing** - Convert React Router to file-based routing\n3. **Environment Variables** - Update env var prefixes\n4. **Components** - Add 'use client' directives where needed\n5. **Data Fetching** - Convert useEffect to server patterns\n6. **Styling** - Move global CSS, configure CSS-in-JS\n7. **Images & Fonts** - Adopt Next.js optimizations\n8. **SEO** - Migrate to Metadata API\n9. **API Routes** - Create Route Handlers\n10. **Testing** - Update test configuration\n\n## Post-Migration Verification Checklist\n\nAfter migration, verify the application works correctly:\n\n**Core Functionality:**\n\n- [ ] `npm run dev` starts Next.js dev server without errors\n- [ ] `npm run build` completes successfully\n- [ ] `npm start` runs the production build\n- [ ] Main application renders correctly\n- [ ] All routes are accessible\n\n**Client-Side Features:**\n\n- [ ] localStorage\u002FsessionStorage persistence works\n- [ ] Dark mode or theme toggles work and persist\n- [ ] Client-side interactivity (forms, buttons, modals) works\n- [ ] Browser back\u002Fforward navigation works correctly\n\n**Routing (if applicable):**\n\n- [ ] Hash-based routing works (e.g., `#room=abc,key=xyz`)\n- [ ] Query parameters are read correctly\n- [ ] Dynamic routes render with correct params\n- [ ] 404 pages show for invalid routes\n\n**Real-Time Features (if applicable):**\n\n- [ ] WebSocket connections establish successfully\n- [ ] Real-time collaboration or updates work\n- [ ] Reconnection after disconnect works\n\n**Integrations (if applicable):**\n\n- [ ] Error monitoring (Sentry) captures errors\n- [ ] Analytics tracking fires correctly\n- [ ] Third-party auth (OAuth, Firebase) works\n- [ ] File uploads work\n\n**PWA (if applicable):**\n\n- [ ] Service worker registers (production build)\n- [ ] App is installable\n- [ ] Offline functionality works as expected\n\n**Performance:**\n\n- [ ] No hydration mismatch warnings in console\n- [ ] Images load and are optimized\n- [ ] Fonts load without FOUT\u002FFOIT issues\n- [ ] No unexpected console errors or warnings\n",{"data":37,"body":41},{"name":4,"description":6,"license":28,"metadata":38},{"author":39,"version":40},"community","1.0.0",{"type":42,"children":43},"root",[44,53,59,66,71,106,112,121,126,166,179,185,743,749,756,825,831,845,851,1054,1060,1184,1190,1292,1298,1380,1386,1526,1532,1590,1596,1687,1693,1762,1768,1870,1876,1978,1984,2075,2081,2095,2101,2203,2209,2289,2295,2562,2568,2573,3149,3157,3313,3319,3324,3334,3339,3362,3368,3373,3470,3476,3481,3489,3564,3572,3612,3620,3667,3675,3706,3714,3754,3762,3793,3801,3841],{"type":45,"tag":46,"props":47,"children":49},"element","h1",{"id":48},"cra-to-nextjs-migration-guide",[50],{"type":51,"value":52},"text","CRA to Next.js Migration Guide",{"type":45,"tag":54,"props":55,"children":56},"p",{},[57],{"type":51,"value":58},"Comprehensive migration guide for converting Create React App projects to Next.js, covering routing, data fetching, components, styling, and deployment. Contains 148 rules across 17 categories, prioritized by migration impact. After a successful migration the application should work the same as it did before the migration.",{"type":45,"tag":60,"props":61,"children":63},"h2",{"id":62},"when-to-apply",[64],{"type":51,"value":65},"When to Apply",{"type":45,"tag":54,"props":67,"children":68},{},[69],{"type":51,"value":70},"Reference these guidelines when:",{"type":45,"tag":72,"props":73,"children":74},"ul",{},[75,81,86,91,96,101],{"type":45,"tag":76,"props":77,"children":78},"li",{},[79],{"type":51,"value":80},"Migrating an existing CRA application to Next.js",{"type":45,"tag":76,"props":82,"children":83},{},[84],{"type":51,"value":85},"Converting React Router routes to file-based routing",{"type":45,"tag":76,"props":87,"children":88},{},[89],{"type":51,"value":90},"Adopting Server Components in a client-heavy app",{"type":45,"tag":76,"props":92,"children":93},{},[94],{"type":51,"value":95},"Moving from client-side rendering to SSR\u002FSSG",{"type":45,"tag":76,"props":97,"children":98},{},[99],{"type":51,"value":100},"Updating environment variables for Next.js",{"type":45,"tag":76,"props":102,"children":103},{},[104],{"type":51,"value":105},"Optimizing images and fonts with Next.js built-ins",{"type":45,"tag":60,"props":107,"children":109},{"id":108},"version-policy",[110],{"type":51,"value":111},"Version Policy",{"type":45,"tag":54,"props":113,"children":114},{},[115],{"type":45,"tag":116,"props":117,"children":118},"strong",{},[119],{"type":51,"value":120},"Use Next.js 16.x or later. Do NOT use Next.js 14.x or 15.x.",{"type":45,"tag":54,"props":122,"children":123},{},[124],{"type":51,"value":125},"Before starting migration, check the current latest version:",{"type":45,"tag":127,"props":128,"children":133},"pre",{"className":129,"code":130,"language":131,"meta":132,"style":132},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm info next version\n","bash","",[134],{"type":45,"tag":135,"props":136,"children":137},"code",{"__ignoreMap":132},[138],{"type":45,"tag":139,"props":140,"children":143},"span",{"class":141,"line":142},"line",1,[144,150,156,161],{"type":45,"tag":139,"props":145,"children":147},{"style":146},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[148],{"type":51,"value":149},"npm",{"type":45,"tag":139,"props":151,"children":153},{"style":152},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[154],{"type":51,"value":155}," info",{"type":45,"tag":139,"props":157,"children":158},{"style":152},[159],{"type":51,"value":160}," next",{"type":45,"tag":139,"props":162,"children":163},{"style":152},[164],{"type":51,"value":165}," version\n",{"type":45,"tag":54,"props":167,"children":168},{},[169,171,177],{"type":51,"value":170},"Use the latest version in your package.json with a caret for minor\u002Fpatch updates. The minimum supported version for this migration guide is ",{"type":45,"tag":135,"props":172,"children":174},{"className":173},[],[175],{"type":51,"value":176},"^16.0.0",{"type":51,"value":178},".",{"type":45,"tag":60,"props":180,"children":182},{"id":181},"rule-categories-by-priority",[183],{"type":51,"value":184},"Rule Categories by Priority",{"type":45,"tag":186,"props":187,"children":188},"table",{},[189,223],{"type":45,"tag":190,"props":191,"children":192},"thead",{},[193],{"type":45,"tag":194,"props":195,"children":196},"tr",{},[197,203,208,213,218],{"type":45,"tag":198,"props":199,"children":200},"th",{},[201],{"type":51,"value":202},"Priority",{"type":45,"tag":198,"props":204,"children":205},{},[206],{"type":51,"value":207},"Category",{"type":45,"tag":198,"props":209,"children":210},{},[211],{"type":51,"value":212},"Impact",{"type":45,"tag":198,"props":214,"children":215},{},[216],{"type":51,"value":217},"Prefix",{"type":45,"tag":198,"props":219,"children":220},{},[221],{"type":51,"value":222},"Rules",{"type":45,"tag":224,"props":225,"children":226},"tbody",{},[227,260,290,321,352,384,413,444,475,504,534,563,592,622,652,683,713],{"type":45,"tag":194,"props":228,"children":229},{},[230,236,241,246,255],{"type":45,"tag":231,"props":232,"children":233},"td",{},[234],{"type":51,"value":235},"1",{"type":45,"tag":231,"props":237,"children":238},{},[239],{"type":51,"value":240},"Project Setup",{"type":45,"tag":231,"props":242,"children":243},{},[244],{"type":51,"value":245},"CRITICAL",{"type":45,"tag":231,"props":247,"children":248},{},[249],{"type":45,"tag":135,"props":250,"children":252},{"className":251},[],[253],{"type":51,"value":254},"setup-",{"type":45,"tag":231,"props":256,"children":257},{},[258],{"type":51,"value":259},"6",{"type":45,"tag":194,"props":261,"children":262},{},[263,268,273,277,286],{"type":45,"tag":231,"props":264,"children":265},{},[266],{"type":51,"value":267},"2",{"type":45,"tag":231,"props":269,"children":270},{},[271],{"type":51,"value":272},"Dependencies",{"type":45,"tag":231,"props":274,"children":275},{},[276],{"type":51,"value":245},{"type":45,"tag":231,"props":278,"children":279},{},[280],{"type":45,"tag":135,"props":281,"children":283},{"className":282},[],[284],{"type":51,"value":285},"deps-",{"type":45,"tag":231,"props":287,"children":288},{},[289],{"type":51,"value":235},{"type":45,"tag":194,"props":291,"children":292},{},[293,298,303,307,316],{"type":45,"tag":231,"props":294,"children":295},{},[296],{"type":51,"value":297},"3",{"type":45,"tag":231,"props":299,"children":300},{},[301],{"type":51,"value":302},"Routing",{"type":45,"tag":231,"props":304,"children":305},{},[306],{"type":51,"value":245},{"type":45,"tag":231,"props":308,"children":309},{},[310],{"type":45,"tag":135,"props":311,"children":313},{"className":312},[],[314],{"type":51,"value":315},"routing-",{"type":45,"tag":231,"props":317,"children":318},{},[319],{"type":51,"value":320},"17",{"type":45,"tag":194,"props":322,"children":323},{},[324,329,334,338,347],{"type":45,"tag":231,"props":325,"children":326},{},[327],{"type":51,"value":328},"4",{"type":45,"tag":231,"props":330,"children":331},{},[332],{"type":51,"value":333},"Data Fetching",{"type":45,"tag":231,"props":335,"children":336},{},[337],{"type":51,"value":245},{"type":45,"tag":231,"props":339,"children":340},{},[341],{"type":45,"tag":135,"props":342,"children":344},{"className":343},[],[345],{"type":51,"value":346},"data-",{"type":45,"tag":231,"props":348,"children":349},{},[350],{"type":51,"value":351},"11",{"type":45,"tag":194,"props":353,"children":354},{},[355,360,365,370,379],{"type":45,"tag":231,"props":356,"children":357},{},[358],{"type":51,"value":359},"5",{"type":45,"tag":231,"props":361,"children":362},{},[363],{"type":51,"value":364},"Components",{"type":45,"tag":231,"props":366,"children":367},{},[368],{"type":51,"value":369},"HIGH",{"type":45,"tag":231,"props":371,"children":372},{},[373],{"type":45,"tag":135,"props":374,"children":376},{"className":375},[],[377],{"type":51,"value":378},"components-",{"type":45,"tag":231,"props":380,"children":381},{},[382],{"type":51,"value":383},"9",{"type":45,"tag":194,"props":385,"children":386},{},[387,391,396,400,409],{"type":45,"tag":231,"props":388,"children":389},{},[390],{"type":51,"value":259},{"type":45,"tag":231,"props":392,"children":393},{},[394],{"type":51,"value":395},"Environment Variables",{"type":45,"tag":231,"props":397,"children":398},{},[399],{"type":51,"value":369},{"type":45,"tag":231,"props":401,"children":402},{},[403],{"type":45,"tag":135,"props":404,"children":406},{"className":405},[],[407],{"type":51,"value":408},"env-",{"type":45,"tag":231,"props":410,"children":411},{},[412],{"type":51,"value":259},{"type":45,"tag":194,"props":414,"children":415},{},[416,421,426,430,439],{"type":45,"tag":231,"props":417,"children":418},{},[419],{"type":51,"value":420},"7",{"type":45,"tag":231,"props":422,"children":423},{},[424],{"type":51,"value":425},"Styling",{"type":45,"tag":231,"props":427,"children":428},{},[429],{"type":51,"value":369},{"type":45,"tag":231,"props":431,"children":432},{},[433],{"type":45,"tag":135,"props":434,"children":436},{"className":435},[],[437],{"type":51,"value":438},"styling-",{"type":45,"tag":231,"props":440,"children":441},{},[442],{"type":51,"value":443},"12",{"type":45,"tag":194,"props":445,"children":446},{},[447,452,457,462,471],{"type":45,"tag":231,"props":448,"children":449},{},[450],{"type":51,"value":451},"8",{"type":45,"tag":231,"props":453,"children":454},{},[455],{"type":51,"value":456},"Public Assets",{"type":45,"tag":231,"props":458,"children":459},{},[460],{"type":51,"value":461},"MEDIUM",{"type":45,"tag":231,"props":463,"children":464},{},[465],{"type":45,"tag":135,"props":466,"children":468},{"className":467},[],[469],{"type":51,"value":470},"assets-",{"type":45,"tag":231,"props":472,"children":473},{},[474],{"type":51,"value":359},{"type":45,"tag":194,"props":476,"children":477},{},[478,482,487,491,500],{"type":45,"tag":231,"props":479,"children":480},{},[481],{"type":51,"value":383},{"type":45,"tag":231,"props":483,"children":484},{},[485],{"type":51,"value":486},"Images",{"type":45,"tag":231,"props":488,"children":489},{},[490],{"type":51,"value":461},{"type":45,"tag":231,"props":492,"children":493},{},[494],{"type":45,"tag":135,"props":495,"children":497},{"className":496},[],[498],{"type":51,"value":499},"images-",{"type":45,"tag":231,"props":501,"children":502},{},[503],{"type":51,"value":451},{"type":45,"tag":194,"props":505,"children":506},{},[507,512,517,521,530],{"type":45,"tag":231,"props":508,"children":509},{},[510],{"type":51,"value":511},"10",{"type":45,"tag":231,"props":513,"children":514},{},[515],{"type":51,"value":516},"Fonts",{"type":45,"tag":231,"props":518,"children":519},{},[520],{"type":51,"value":461},{"type":45,"tag":231,"props":522,"children":523},{},[524],{"type":45,"tag":135,"props":525,"children":527},{"className":526},[],[528],{"type":51,"value":529},"fonts-",{"type":45,"tag":231,"props":531,"children":532},{},[533],{"type":51,"value":259},{"type":45,"tag":194,"props":535,"children":536},{},[537,541,546,550,559],{"type":45,"tag":231,"props":538,"children":539},{},[540],{"type":51,"value":351},{"type":45,"tag":231,"props":542,"children":543},{},[544],{"type":51,"value":545},"SEO & Metadata",{"type":45,"tag":231,"props":547,"children":548},{},[549],{"type":51,"value":461},{"type":45,"tag":231,"props":551,"children":552},{},[553],{"type":45,"tag":135,"props":554,"children":556},{"className":555},[],[557],{"type":51,"value":558},"seo-",{"type":45,"tag":231,"props":560,"children":561},{},[562],{"type":51,"value":383},{"type":45,"tag":194,"props":564,"children":565},{},[566,570,575,579,588],{"type":45,"tag":231,"props":567,"children":568},{},[569],{"type":51,"value":443},{"type":45,"tag":231,"props":571,"children":572},{},[573],{"type":51,"value":574},"API Routes",{"type":45,"tag":231,"props":576,"children":577},{},[578],{"type":51,"value":461},{"type":45,"tag":231,"props":580,"children":581},{},[582],{"type":45,"tag":135,"props":583,"children":585},{"className":584},[],[586],{"type":51,"value":587},"api-",{"type":45,"tag":231,"props":589,"children":590},{},[591],{"type":51,"value":383},{"type":45,"tag":194,"props":593,"children":594},{},[595,600,605,609,618],{"type":45,"tag":231,"props":596,"children":597},{},[598],{"type":51,"value":599},"13",{"type":45,"tag":231,"props":601,"children":602},{},[603],{"type":51,"value":604},"State Management",{"type":45,"tag":231,"props":606,"children":607},{},[608],{"type":51,"value":461},{"type":45,"tag":231,"props":610,"children":611},{},[612],{"type":45,"tag":135,"props":613,"children":615},{"className":614},[],[616],{"type":51,"value":617},"state-",{"type":45,"tag":231,"props":619,"children":620},{},[621],{"type":51,"value":451},{"type":45,"tag":194,"props":623,"children":624},{},[625,630,635,639,648],{"type":45,"tag":231,"props":626,"children":627},{},[628],{"type":51,"value":629},"14",{"type":45,"tag":231,"props":631,"children":632},{},[633],{"type":51,"value":634},"Integrations",{"type":45,"tag":231,"props":636,"children":637},{},[638],{"type":51,"value":461},{"type":45,"tag":231,"props":640,"children":641},{},[642],{"type":45,"tag":135,"props":643,"children":645},{"className":644},[],[646],{"type":51,"value":647},"integrations-",{"type":45,"tag":231,"props":649,"children":650},{},[651],{"type":51,"value":235},{"type":45,"tag":194,"props":653,"children":654},{},[655,660,665,670,679],{"type":45,"tag":231,"props":656,"children":657},{},[658],{"type":51,"value":659},"15",{"type":45,"tag":231,"props":661,"children":662},{},[663],{"type":51,"value":664},"Testing",{"type":45,"tag":231,"props":666,"children":667},{},[668],{"type":51,"value":669},"LOW",{"type":45,"tag":231,"props":671,"children":672},{},[673],{"type":45,"tag":135,"props":674,"children":676},{"className":675},[],[677],{"type":51,"value":678},"testing-",{"type":45,"tag":231,"props":680,"children":681},{},[682],{"type":51,"value":383},{"type":45,"tag":194,"props":684,"children":685},{},[686,691,696,700,709],{"type":45,"tag":231,"props":687,"children":688},{},[689],{"type":51,"value":690},"16",{"type":45,"tag":231,"props":692,"children":693},{},[694],{"type":51,"value":695},"Build & Deploy",{"type":45,"tag":231,"props":697,"children":698},{},[699],{"type":51,"value":669},{"type":45,"tag":231,"props":701,"children":702},{},[703],{"type":45,"tag":135,"props":704,"children":706},{"className":705},[],[707],{"type":51,"value":708},"build-",{"type":45,"tag":231,"props":710,"children":711},{},[712],{"type":51,"value":420},{"type":45,"tag":194,"props":714,"children":715},{},[716,720,725,729,738],{"type":45,"tag":231,"props":717,"children":718},{},[719],{"type":51,"value":320},{"type":45,"tag":231,"props":721,"children":722},{},[723],{"type":51,"value":724},"Common Gotchas",{"type":45,"tag":231,"props":726,"children":727},{},[728],{"type":51,"value":369},{"type":45,"tag":231,"props":730,"children":731},{},[732],{"type":45,"tag":135,"props":733,"children":735},{"className":734},[],[736],{"type":51,"value":737},"gotchas-",{"type":45,"tag":231,"props":739,"children":740},{},[741],{"type":51,"value":742},"24",{"type":45,"tag":60,"props":744,"children":746},{"id":745},"quick-reference",[747],{"type":51,"value":748},"Quick Reference",{"type":45,"tag":750,"props":751,"children":753},"h3",{"id":752},"_1-project-setup-critical",[754],{"type":51,"value":755},"1. Project Setup (CRITICAL)",{"type":45,"tag":72,"props":757,"children":758},{},[759,770,781,792,803,814],{"type":45,"tag":76,"props":760,"children":761},{},[762,768],{"type":45,"tag":135,"props":763,"children":765},{"className":764},[],[766],{"type":51,"value":767},"setup-initial-structure",{"type":51,"value":769}," - Convert CRA folder structure to Next.js App Router",{"type":45,"tag":76,"props":771,"children":772},{},[773,779],{"type":45,"tag":135,"props":774,"children":776},{"className":775},[],[777],{"type":51,"value":778},"setup-package-json",{"type":51,"value":780}," - Update dependencies and scripts",{"type":45,"tag":76,"props":782,"children":783},{},[784,790],{"type":45,"tag":135,"props":785,"children":787},{"className":786},[],[788],{"type":51,"value":789},"setup-next-config",{"type":51,"value":791}," - Create and configure next.config.js",{"type":45,"tag":76,"props":793,"children":794},{},[795,801],{"type":45,"tag":135,"props":796,"children":798},{"className":797},[],[799],{"type":51,"value":800},"setup-typescript",{"type":51,"value":802}," - Migrate TypeScript configuration",{"type":45,"tag":76,"props":804,"children":805},{},[806,812],{"type":45,"tag":135,"props":807,"children":809},{"className":808},[],[810],{"type":51,"value":811},"setup-eslint",{"type":51,"value":813}," - Update ESLint for Next.js",{"type":45,"tag":76,"props":815,"children":816},{},[817,823],{"type":45,"tag":135,"props":818,"children":820},{"className":819},[],[821],{"type":51,"value":822},"setup-gitignore",{"type":51,"value":824}," - Update .gitignore for Next.js",{"type":45,"tag":750,"props":826,"children":828},{"id":827},"_2-dependencies-critical",[829],{"type":51,"value":830},"2. Dependencies (CRITICAL)",{"type":45,"tag":72,"props":832,"children":833},{},[834],{"type":45,"tag":76,"props":835,"children":836},{},[837,843],{"type":45,"tag":135,"props":838,"children":840},{"className":839},[],[841],{"type":51,"value":842},"deps-react19-compatibility",{"type":51,"value":844}," - Upgrade dependencies for React 19 compatibility",{"type":45,"tag":750,"props":846,"children":848},{"id":847},"_3-routing-critical",[849],{"type":51,"value":850},"3. Routing (CRITICAL)",{"type":45,"tag":72,"props":852,"children":853},{},[854,865,883,900,911,922,933,944,955,966,977,988,999,1010,1021,1032,1043],{"type":45,"tag":76,"props":855,"children":856},{},[857,863],{"type":45,"tag":135,"props":858,"children":860},{"className":859},[],[861],{"type":51,"value":862},"routing-basic-pages",{"type":51,"value":864}," - Convert components to file-based routes",{"type":45,"tag":76,"props":866,"children":867},{},[868,874,876,881],{"type":45,"tag":135,"props":869,"children":871},{"className":870},[],[872],{"type":51,"value":873},"routing-dynamic-routes",{"type":51,"value":875}," - Use ",{"type":45,"tag":139,"props":877,"children":878},{},[879],{"type":51,"value":880},"param",{"type":51,"value":882}," syntax for dynamic segments",{"type":45,"tag":76,"props":884,"children":885},{},[886,892,893,898],{"type":45,"tag":135,"props":887,"children":889},{"className":888},[],[890],{"type":51,"value":891},"routing-catch-all-routes",{"type":51,"value":875},{"type":45,"tag":139,"props":894,"children":895},{},[896],{"type":51,"value":897},"...slug",{"type":51,"value":899}," for catch-all routes",{"type":45,"tag":76,"props":901,"children":902},{},[903,909],{"type":45,"tag":135,"props":904,"children":906},{"className":905},[],[907],{"type":51,"value":908},"routing-optional-catch-all",{"type":51,"value":910}," - Use [[...slug]] for optional catch-all",{"type":45,"tag":76,"props":912,"children":913},{},[914,920],{"type":45,"tag":135,"props":915,"children":917},{"className":916},[],[918],{"type":51,"value":919},"routing-route-groups",{"type":51,"value":921}," - Use (group) folders for organization",{"type":45,"tag":76,"props":923,"children":924},{},[925,931],{"type":45,"tag":135,"props":926,"children":928},{"className":927},[],[929],{"type":51,"value":930},"routing-parallel-routes",{"type":51,"value":932}," - Use @slot for parallel routes",{"type":45,"tag":76,"props":934,"children":935},{},[936,942],{"type":45,"tag":135,"props":937,"children":939},{"className":938},[],[940],{"type":51,"value":941},"routing-intercepting-routes",{"type":51,"value":943}," - Use (..) for intercepting routes",{"type":45,"tag":76,"props":945,"children":946},{},[947,953],{"type":45,"tag":135,"props":948,"children":950},{"className":949},[],[951],{"type":51,"value":952},"routing-link-component",{"type":51,"value":954}," - Replace react-router Link with next\u002Flink",{"type":45,"tag":76,"props":956,"children":957},{},[958,964],{"type":45,"tag":135,"props":959,"children":961},{"className":960},[],[962],{"type":51,"value":963},"routing-programmatic-navigation",{"type":51,"value":965}," - Replace useNavigate with useRouter",{"type":45,"tag":76,"props":967,"children":968},{},[969,975],{"type":45,"tag":135,"props":970,"children":972},{"className":971},[],[973],{"type":51,"value":974},"routing-use-params",{"type":51,"value":976}," - Replace useParams with Next.js params",{"type":45,"tag":76,"props":978,"children":979},{},[980,986],{"type":45,"tag":135,"props":981,"children":983},{"className":982},[],[984],{"type":51,"value":985},"routing-use-search-params",{"type":51,"value":987}," - Replace useSearchParams properly",{"type":45,"tag":76,"props":989,"children":990},{},[991,997],{"type":45,"tag":135,"props":992,"children":994},{"className":993},[],[995],{"type":51,"value":996},"routing-nested-layouts",{"type":51,"value":998}," - Convert nested routes to layouts",{"type":45,"tag":76,"props":1000,"children":1001},{},[1002,1008],{"type":45,"tag":135,"props":1003,"children":1005},{"className":1004},[],[1006],{"type":51,"value":1007},"routing-loading-states",{"type":51,"value":1009}," - Add loading.tsx for suspense",{"type":45,"tag":76,"props":1011,"children":1012},{},[1013,1019],{"type":45,"tag":135,"props":1014,"children":1016},{"className":1015},[],[1017],{"type":51,"value":1018},"routing-error-boundaries",{"type":51,"value":1020}," - Add error.tsx for error handling",{"type":45,"tag":76,"props":1022,"children":1023},{},[1024,1030],{"type":45,"tag":135,"props":1025,"children":1027},{"className":1026},[],[1028],{"type":51,"value":1029},"routing-not-found",{"type":51,"value":1031}," - Add not-found.tsx for 404 pages",{"type":45,"tag":76,"props":1033,"children":1034},{},[1035,1041],{"type":45,"tag":135,"props":1036,"children":1038},{"className":1037},[],[1039],{"type":51,"value":1040},"routing-hash-based",{"type":51,"value":1042}," - Handle hash-based routing for client-only apps",{"type":45,"tag":76,"props":1044,"children":1045},{},[1046,1052],{"type":45,"tag":135,"props":1047,"children":1049},{"className":1048},[],[1050],{"type":51,"value":1051},"routing-protected-routes",{"type":51,"value":1053}," - Implement protected route patterns",{"type":45,"tag":750,"props":1055,"children":1057},{"id":1056},"_4-data-fetching-critical",[1058],{"type":51,"value":1059},"4. Data Fetching (CRITICAL)",{"type":45,"tag":72,"props":1061,"children":1062},{},[1063,1074,1085,1096,1107,1118,1129,1140,1151,1162,1173],{"type":45,"tag":76,"props":1064,"children":1065},{},[1066,1072],{"type":45,"tag":135,"props":1067,"children":1069},{"className":1068},[],[1070],{"type":51,"value":1071},"data-useeffect-to-rsc",{"type":51,"value":1073}," - Convert useEffect fetches to Server Components",{"type":45,"tag":76,"props":1075,"children":1076},{},[1077,1083],{"type":45,"tag":135,"props":1078,"children":1080},{"className":1079},[],[1081],{"type":51,"value":1082},"data-useeffect-to-ssr",{"type":51,"value":1084}," - Convert useEffect to getServerSideProps",{"type":45,"tag":76,"props":1086,"children":1087},{},[1088,1094],{"type":45,"tag":135,"props":1089,"children":1091},{"className":1090},[],[1092],{"type":51,"value":1093},"data-useeffect-to-ssg",{"type":51,"value":1095}," - Convert useEffect to getStaticProps",{"type":45,"tag":76,"props":1097,"children":1098},{},[1099,1105],{"type":45,"tag":135,"props":1100,"children":1102},{"className":1101},[],[1103],{"type":51,"value":1104},"data-client-fetch",{"type":51,"value":1106}," - Keep client fetches with proper patterns",{"type":45,"tag":76,"props":1108,"children":1109},{},[1110,1116],{"type":45,"tag":135,"props":1111,"children":1113},{"className":1112},[],[1114],{"type":51,"value":1115},"data-server-actions",{"type":51,"value":1117}," - Use Server Actions for mutations",{"type":45,"tag":76,"props":1119,"children":1120},{},[1121,1127],{"type":45,"tag":135,"props":1122,"children":1124},{"className":1123},[],[1125],{"type":51,"value":1126},"data-revalidation",{"type":51,"value":1128}," - Configure data revalidation strategies",{"type":45,"tag":76,"props":1130,"children":1131},{},[1132,1138],{"type":45,"tag":135,"props":1133,"children":1135},{"className":1134},[],[1136],{"type":51,"value":1137},"data-streaming",{"type":51,"value":1139}," - Use Suspense for streaming data",{"type":45,"tag":76,"props":1141,"children":1142},{},[1143,1149],{"type":45,"tag":135,"props":1144,"children":1146},{"className":1145},[],[1147],{"type":51,"value":1148},"data-parallel-fetching",{"type":51,"value":1150}," - Fetch data in parallel on server",{"type":45,"tag":76,"props":1152,"children":1153},{},[1154,1160],{"type":45,"tag":135,"props":1155,"children":1157},{"className":1156},[],[1158],{"type":51,"value":1159},"data-sequential-fetching",{"type":51,"value":1161}," - Handle sequential data dependencies",{"type":45,"tag":76,"props":1163,"children":1164},{},[1165,1171],{"type":45,"tag":135,"props":1166,"children":1168},{"className":1167},[],[1169],{"type":51,"value":1170},"data-caching",{"type":51,"value":1172}," - Configure fetch caching behavior",{"type":45,"tag":76,"props":1174,"children":1175},{},[1176,1182],{"type":45,"tag":135,"props":1177,"children":1179},{"className":1178},[],[1180],{"type":51,"value":1181},"data-client-library-init",{"type":51,"value":1183}," - Initialize client-only libraries in useEffect",{"type":45,"tag":750,"props":1185,"children":1187},{"id":1186},"_5-components-high",[1188],{"type":51,"value":1189},"5. Components (HIGH)",{"type":45,"tag":72,"props":1191,"children":1192},{},[1193,1204,1215,1226,1237,1248,1259,1270,1281],{"type":45,"tag":76,"props":1194,"children":1195},{},[1196,1202],{"type":45,"tag":135,"props":1197,"children":1199},{"className":1198},[],[1200],{"type":51,"value":1201},"components-use-client",{"type":51,"value":1203}," - Add 'use client' directive for client components",{"type":45,"tag":76,"props":1205,"children":1206},{},[1207,1213],{"type":45,"tag":135,"props":1208,"children":1210},{"className":1209},[],[1211],{"type":51,"value":1212},"components-server-default",{"type":51,"value":1214}," - Understand server components are default",{"type":45,"tag":76,"props":1216,"children":1217},{},[1218,1224],{"type":45,"tag":135,"props":1219,"children":1221},{"className":1220},[],[1222],{"type":51,"value":1223},"components-boundary-placement",{"type":51,"value":1225}," - Place client boundaries strategically",{"type":45,"tag":76,"props":1227,"children":1228},{},[1229,1235],{"type":45,"tag":135,"props":1230,"children":1232},{"className":1231},[],[1233],{"type":51,"value":1234},"components-composition",{"type":51,"value":1236}," - Use composition to minimize client JS",{"type":45,"tag":76,"props":1238,"children":1239},{},[1240,1246],{"type":45,"tag":135,"props":1241,"children":1243},{"className":1242},[],[1244],{"type":51,"value":1245},"components-interleaving",{"type":51,"value":1247}," - Interleave server and client components",{"type":45,"tag":76,"props":1249,"children":1250},{},[1251,1257],{"type":45,"tag":135,"props":1252,"children":1254},{"className":1253},[],[1255],{"type":51,"value":1256},"components-props-serialization",{"type":51,"value":1258}," - Ensure props are serializable",{"type":45,"tag":76,"props":1260,"children":1261},{},[1262,1268],{"type":45,"tag":135,"props":1263,"children":1265},{"className":1264},[],[1266],{"type":51,"value":1267},"components-children-pattern",{"type":51,"value":1269}," - Pass server components as children",{"type":45,"tag":76,"props":1271,"children":1272},{},[1273,1279],{"type":45,"tag":135,"props":1274,"children":1276},{"className":1275},[],[1277],{"type":51,"value":1278},"components-context-providers",{"type":51,"value":1280}," - Handle Context providers properly",{"type":45,"tag":76,"props":1282,"children":1283},{},[1284,1290],{"type":45,"tag":135,"props":1285,"children":1287},{"className":1286},[],[1288],{"type":51,"value":1289},"components-third-party",{"type":51,"value":1291}," - Wrap third-party client components",{"type":45,"tag":750,"props":1293,"children":1295},{"id":1294},"_6-environment-variables-high",[1296],{"type":51,"value":1297},"6. Environment Variables (HIGH)",{"type":45,"tag":72,"props":1299,"children":1300},{},[1301,1325,1336,1347,1358,1369],{"type":45,"tag":76,"props":1302,"children":1303},{},[1304,1310,1312,1318,1320],{"type":45,"tag":135,"props":1305,"children":1307},{"className":1306},[],[1308],{"type":51,"value":1309},"env-prefix-change",{"type":51,"value":1311}," - Change REACT",{"type":45,"tag":1313,"props":1314,"children":1315},"em",{},[1316],{"type":51,"value":1317},"APP",{"type":51,"value":1319}," to NEXT",{"type":45,"tag":1313,"props":1321,"children":1322},{},[1323],{"type":51,"value":1324},"PUBLIC",{"type":45,"tag":76,"props":1326,"children":1327},{},[1328,1334],{"type":45,"tag":135,"props":1329,"children":1331},{"className":1330},[],[1332],{"type":51,"value":1333},"env-server-only",{"type":51,"value":1335}," - Use non-prefixed vars for server-only",{"type":45,"tag":76,"props":1337,"children":1338},{},[1339,1345],{"type":45,"tag":135,"props":1340,"children":1342},{"className":1341},[],[1343],{"type":51,"value":1344},"env-runtime-config",{"type":51,"value":1346}," - Use runtime configuration when needed",{"type":45,"tag":76,"props":1348,"children":1349},{},[1350,1356],{"type":45,"tag":135,"props":1351,"children":1353},{"className":1352},[],[1354],{"type":51,"value":1355},"env-local-files",{"type":51,"value":1357}," - Understand .env file loading order",{"type":45,"tag":76,"props":1359,"children":1360},{},[1361,1367],{"type":45,"tag":135,"props":1362,"children":1364},{"className":1363},[],[1365],{"type":51,"value":1366},"env-build-time",{"type":51,"value":1368}," - Understand build-time vs runtime env vars",{"type":45,"tag":76,"props":1370,"children":1371},{},[1372,1378],{"type":45,"tag":135,"props":1373,"children":1375},{"className":1374},[],[1376],{"type":51,"value":1377},"env-validation",{"type":51,"value":1379}," - Validate required environment variables",{"type":45,"tag":750,"props":1381,"children":1383},{"id":1382},"_7-styling-high",[1384],{"type":51,"value":1385},"7. Styling (HIGH)",{"type":45,"tag":72,"props":1387,"children":1388},{},[1389,1400,1411,1422,1433,1444,1455,1466,1477,1488,1504,1515],{"type":45,"tag":76,"props":1390,"children":1391},{},[1392,1398],{"type":45,"tag":135,"props":1393,"children":1395},{"className":1394},[],[1396],{"type":51,"value":1397},"styling-global-css",{"type":51,"value":1399}," - Move global CSS to app\u002Flayout.tsx",{"type":45,"tag":76,"props":1401,"children":1402},{},[1403,1409],{"type":45,"tag":135,"props":1404,"children":1406},{"className":1405},[],[1407],{"type":51,"value":1408},"styling-css-modules",{"type":51,"value":1410}," - CSS Modules work with minor changes",{"type":45,"tag":76,"props":1412,"children":1413},{},[1414,1420],{"type":45,"tag":135,"props":1415,"children":1417},{"className":1416},[],[1418],{"type":51,"value":1419},"styling-sass",{"type":51,"value":1421}," - Configure Sass support",{"type":45,"tag":76,"props":1423,"children":1424},{},[1425,1431],{"type":45,"tag":135,"props":1426,"children":1428},{"className":1427},[],[1429],{"type":51,"value":1430},"styling-tailwind",{"type":51,"value":1432}," - Configure Tailwind CSS",{"type":45,"tag":76,"props":1434,"children":1435},{},[1436,1442],{"type":45,"tag":135,"props":1437,"children":1439},{"className":1438},[],[1440],{"type":51,"value":1441},"styling-css-in-js",{"type":51,"value":1443}," - Handle CSS-in-JS libraries",{"type":45,"tag":76,"props":1445,"children":1446},{},[1447,1453],{"type":45,"tag":135,"props":1448,"children":1450},{"className":1449},[],[1451],{"type":51,"value":1452},"styling-styled-components",{"type":51,"value":1454}," - Configure styled-components for SSR",{"type":45,"tag":76,"props":1456,"children":1457},{},[1458,1464],{"type":45,"tag":135,"props":1459,"children":1461},{"className":1460},[],[1462],{"type":51,"value":1463},"styling-emotion",{"type":51,"value":1465}," - Configure Emotion for SSR",{"type":45,"tag":76,"props":1467,"children":1468},{},[1469,1475],{"type":45,"tag":135,"props":1470,"children":1472},{"className":1471},[],[1473],{"type":51,"value":1474},"styling-component-styles",{"type":51,"value":1476}," - Import component styles properly",{"type":45,"tag":76,"props":1478,"children":1479},{},[1480,1486],{"type":45,"tag":135,"props":1481,"children":1483},{"className":1482},[],[1484],{"type":51,"value":1485},"styling-postcss",{"type":51,"value":1487}," - Configure PostCSS",{"type":45,"tag":76,"props":1489,"children":1490},{},[1491,1497,1498,1502],{"type":45,"tag":135,"props":1492,"children":1494},{"className":1493},[],[1495],{"type":51,"value":1496},"styling-scss-global-syntax",{"type":51,"value":875},{"type":45,"tag":1499,"props":1500,"children":1501},"global",{},[],{"type":51,"value":1503}," only in CSS Modules",{"type":45,"tag":76,"props":1505,"children":1506},{},[1507,1513],{"type":45,"tag":135,"props":1508,"children":1510},{"className":1509},[],[1511],{"type":51,"value":1512},"styling-css-import-order",{"type":51,"value":1514}," - Control CSS import order in layouts",{"type":45,"tag":76,"props":1516,"children":1517},{},[1518,1524],{"type":45,"tag":135,"props":1519,"children":1521},{"className":1520},[],[1522],{"type":51,"value":1523},"styling-dark-mode-hydration",{"type":51,"value":1525}," - Handle dark mode without hydration mismatch",{"type":45,"tag":750,"props":1527,"children":1529},{"id":1528},"_8-public-assets-medium",[1530],{"type":51,"value":1531},"8. Public Assets (MEDIUM)",{"type":45,"tag":72,"props":1533,"children":1534},{},[1535,1546,1557,1568,1579],{"type":45,"tag":76,"props":1536,"children":1537},{},[1538,1544],{"type":45,"tag":135,"props":1539,"children":1541},{"className":1540},[],[1542],{"type":51,"value":1543},"assets-public-folder",{"type":51,"value":1545}," - Public folder works the same way",{"type":45,"tag":76,"props":1547,"children":1548},{},[1549,1555],{"type":45,"tag":135,"props":1550,"children":1552},{"className":1551},[],[1553],{"type":51,"value":1554},"assets-static-imports",{"type":51,"value":1556}," - Use static imports for assets",{"type":45,"tag":76,"props":1558,"children":1559},{},[1560,1566],{"type":45,"tag":135,"props":1561,"children":1563},{"className":1562},[],[1564],{"type":51,"value":1565},"assets-absolute-urls",{"type":51,"value":1567}," - Reference assets without public prefix",{"type":45,"tag":76,"props":1569,"children":1570},{},[1571,1577],{"type":45,"tag":135,"props":1572,"children":1574},{"className":1573},[],[1575],{"type":51,"value":1576},"assets-favicon",{"type":51,"value":1578}," - Place favicon in app directory",{"type":45,"tag":76,"props":1580,"children":1581},{},[1582,1588],{"type":45,"tag":135,"props":1583,"children":1585},{"className":1584},[],[1586],{"type":51,"value":1587},"assets-manifest",{"type":51,"value":1589}," - Configure web app manifest",{"type":45,"tag":750,"props":1591,"children":1593},{"id":1592},"_9-images-medium",[1594],{"type":51,"value":1595},"9. Images (MEDIUM)",{"type":45,"tag":72,"props":1597,"children":1598},{},[1599,1610,1621,1632,1643,1654,1665,1676],{"type":45,"tag":76,"props":1600,"children":1601},{},[1602,1608],{"type":45,"tag":135,"props":1603,"children":1605},{"className":1604},[],[1606],{"type":51,"value":1607},"images-next-image",{"type":51,"value":1609}," - Replace img with next\u002Fimage",{"type":45,"tag":76,"props":1611,"children":1612},{},[1613,1619],{"type":45,"tag":135,"props":1614,"children":1616},{"className":1615},[],[1617],{"type":51,"value":1618},"images-required-dimensions",{"type":51,"value":1620}," - Provide width and height",{"type":45,"tag":76,"props":1622,"children":1623},{},[1624,1630],{"type":45,"tag":135,"props":1625,"children":1627},{"className":1626},[],[1628],{"type":51,"value":1629},"images-fill-prop",{"type":51,"value":1631}," - Use fill for responsive images",{"type":45,"tag":76,"props":1633,"children":1634},{},[1635,1641],{"type":45,"tag":135,"props":1636,"children":1638},{"className":1637},[],[1639],{"type":51,"value":1640},"images-priority",{"type":51,"value":1642}," - Use priority for LCP images",{"type":45,"tag":76,"props":1644,"children":1645},{},[1646,1652],{"type":45,"tag":135,"props":1647,"children":1649},{"className":1648},[],[1650],{"type":51,"value":1651},"images-placeholder",{"type":51,"value":1653}," - Configure blur placeholders",{"type":45,"tag":76,"props":1655,"children":1656},{},[1657,1663],{"type":45,"tag":135,"props":1658,"children":1660},{"className":1659},[],[1661],{"type":51,"value":1662},"images-remote-patterns",{"type":51,"value":1664}," - Configure remote image domains",{"type":45,"tag":76,"props":1666,"children":1667},{},[1668,1674],{"type":45,"tag":135,"props":1669,"children":1671},{"className":1670},[],[1672],{"type":51,"value":1673},"images-loader",{"type":51,"value":1675}," - Configure custom image loaders",{"type":45,"tag":76,"props":1677,"children":1678},{},[1679,1685],{"type":45,"tag":135,"props":1680,"children":1682},{"className":1681},[],[1683],{"type":51,"value":1684},"images-optimization",{"type":51,"value":1686}," - Understand automatic optimization",{"type":45,"tag":750,"props":1688,"children":1690},{"id":1689},"_10-fonts-medium",[1691],{"type":51,"value":1692},"10. Fonts (MEDIUM)",{"type":45,"tag":72,"props":1694,"children":1695},{},[1696,1707,1718,1729,1740,1751],{"type":45,"tag":76,"props":1697,"children":1698},{},[1699,1705],{"type":45,"tag":135,"props":1700,"children":1702},{"className":1701},[],[1703],{"type":51,"value":1704},"fonts-next-font",{"type":51,"value":1706}," - Use next\u002Ffont for optimization",{"type":45,"tag":76,"props":1708,"children":1709},{},[1710,1716],{"type":45,"tag":135,"props":1711,"children":1713},{"className":1712},[],[1714],{"type":51,"value":1715},"fonts-google-fonts",{"type":51,"value":1717}," - Load Google Fonts properly",{"type":45,"tag":76,"props":1719,"children":1720},{},[1721,1727],{"type":45,"tag":135,"props":1722,"children":1724},{"className":1723},[],[1725],{"type":51,"value":1726},"fonts-local-fonts",{"type":51,"value":1728}," - Load local font files",{"type":45,"tag":76,"props":1730,"children":1731},{},[1732,1738],{"type":45,"tag":135,"props":1733,"children":1735},{"className":1734},[],[1736],{"type":51,"value":1737},"fonts-variable-fonts",{"type":51,"value":1739}," - Configure variable fonts",{"type":45,"tag":76,"props":1741,"children":1742},{},[1743,1749],{"type":45,"tag":135,"props":1744,"children":1746},{"className":1745},[],[1747],{"type":51,"value":1748},"fonts-font-display",{"type":51,"value":1750}," - Configure font-display strategy",{"type":45,"tag":76,"props":1752,"children":1753},{},[1754,1760],{"type":45,"tag":135,"props":1755,"children":1757},{"className":1756},[],[1758],{"type":51,"value":1759},"fonts-preload",{"type":51,"value":1761}," - Understand automatic font preloading",{"type":45,"tag":750,"props":1763,"children":1765},{"id":1764},"_11-seo-metadata-medium",[1766],{"type":51,"value":1767},"11. SEO & Metadata (MEDIUM)",{"type":45,"tag":72,"props":1769,"children":1770},{},[1771,1782,1793,1804,1815,1826,1837,1848,1859],{"type":45,"tag":76,"props":1772,"children":1773},{},[1774,1780],{"type":45,"tag":135,"props":1775,"children":1777},{"className":1776},[],[1778],{"type":51,"value":1779},"seo-metadata-api",{"type":51,"value":1781}," - Use Metadata API instead of react-helmet",{"type":45,"tag":76,"props":1783,"children":1784},{},[1785,1791],{"type":45,"tag":135,"props":1786,"children":1788},{"className":1787},[],[1789],{"type":51,"value":1790},"seo-dynamic-metadata",{"type":51,"value":1792}," - Generate dynamic metadata",{"type":45,"tag":76,"props":1794,"children":1795},{},[1796,1802],{"type":45,"tag":135,"props":1797,"children":1799},{"className":1798},[],[1800],{"type":51,"value":1801},"seo-opengraph",{"type":51,"value":1803}," - Configure Open Graph metadata",{"type":45,"tag":76,"props":1805,"children":1806},{},[1807,1813],{"type":45,"tag":135,"props":1808,"children":1810},{"className":1809},[],[1811],{"type":51,"value":1812},"seo-twitter-cards",{"type":51,"value":1814}," - Configure Twitter Card metadata",{"type":45,"tag":76,"props":1816,"children":1817},{},[1818,1824],{"type":45,"tag":135,"props":1819,"children":1821},{"className":1820},[],[1822],{"type":51,"value":1823},"seo-json-ld",{"type":51,"value":1825}," - Add structured data (JSON-LD)",{"type":45,"tag":76,"props":1827,"children":1828},{},[1829,1835],{"type":45,"tag":135,"props":1830,"children":1832},{"className":1831},[],[1833],{"type":51,"value":1834},"seo-canonical",{"type":51,"value":1836}," - Set canonical URLs",{"type":45,"tag":76,"props":1838,"children":1839},{},[1840,1846],{"type":45,"tag":135,"props":1841,"children":1843},{"className":1842},[],[1844],{"type":51,"value":1845},"seo-robots",{"type":51,"value":1847}," - Configure robots meta tags",{"type":45,"tag":76,"props":1849,"children":1850},{},[1851,1857],{"type":45,"tag":135,"props":1852,"children":1854},{"className":1853},[],[1855],{"type":51,"value":1856},"seo-sitemap",{"type":51,"value":1858}," - Generate sitemap.xml",{"type":45,"tag":76,"props":1860,"children":1861},{},[1862,1868],{"type":45,"tag":135,"props":1863,"children":1865},{"className":1864},[],[1866],{"type":51,"value":1867},"seo-head-component",{"type":51,"value":1869}," - Migrate from next\u002Fhead to Metadata",{"type":45,"tag":750,"props":1871,"children":1873},{"id":1872},"_12-api-routes-medium",[1874],{"type":51,"value":1875},"12. API Routes (MEDIUM)",{"type":45,"tag":72,"props":1877,"children":1878},{},[1879,1890,1901,1912,1923,1934,1945,1956,1967],{"type":45,"tag":76,"props":1880,"children":1881},{},[1882,1888],{"type":45,"tag":135,"props":1883,"children":1885},{"className":1884},[],[1886],{"type":51,"value":1887},"api-route-handlers",{"type":51,"value":1889}," - Create Route Handlers in app\u002Fapi",{"type":45,"tag":76,"props":1891,"children":1892},{},[1893,1899],{"type":45,"tag":135,"props":1894,"children":1896},{"className":1895},[],[1897],{"type":51,"value":1898},"api-http-methods",{"type":51,"value":1900}," - Export named functions for HTTP methods",{"type":45,"tag":76,"props":1902,"children":1903},{},[1904,1910],{"type":45,"tag":135,"props":1905,"children":1907},{"className":1906},[],[1908],{"type":51,"value":1909},"api-request-body",{"type":51,"value":1911}," - Parse request body properly",{"type":45,"tag":76,"props":1913,"children":1914},{},[1915,1921],{"type":45,"tag":135,"props":1916,"children":1918},{"className":1917},[],[1919],{"type":51,"value":1920},"api-query-params",{"type":51,"value":1922}," - Access query parameters",{"type":45,"tag":76,"props":1924,"children":1925},{},[1926,1932],{"type":45,"tag":135,"props":1927,"children":1929},{"className":1928},[],[1930],{"type":51,"value":1931},"api-headers-cookies",{"type":51,"value":1933}," - Access headers and cookies",{"type":45,"tag":76,"props":1935,"children":1936},{},[1937,1943],{"type":45,"tag":135,"props":1938,"children":1940},{"className":1939},[],[1941],{"type":51,"value":1942},"api-response-types",{"type":51,"value":1944}," - Return proper response types",{"type":45,"tag":76,"props":1946,"children":1947},{},[1948,1954],{"type":45,"tag":135,"props":1949,"children":1951},{"className":1950},[],[1952],{"type":51,"value":1953},"api-middleware",{"type":51,"value":1955}," - Implement middleware patterns",{"type":45,"tag":76,"props":1957,"children":1958},{},[1959,1965],{"type":45,"tag":135,"props":1960,"children":1962},{"className":1961},[],[1963],{"type":51,"value":1964},"api-cors",{"type":51,"value":1966}," - Configure CORS properly",{"type":45,"tag":76,"props":1968,"children":1969},{},[1970,1976],{"type":45,"tag":135,"props":1971,"children":1973},{"className":1972},[],[1974],{"type":51,"value":1975},"api-rate-limiting",{"type":51,"value":1977}," - Implement rate limiting",{"type":45,"tag":750,"props":1979,"children":1981},{"id":1980},"_13-state-management-medium",[1982],{"type":51,"value":1983},"13. State Management (MEDIUM)",{"type":45,"tag":72,"props":1985,"children":1986},{},[1987,1998,2009,2020,2031,2042,2053,2064],{"type":45,"tag":76,"props":1988,"children":1989},{},[1990,1996],{"type":45,"tag":135,"props":1991,"children":1993},{"className":1992},[],[1994],{"type":51,"value":1995},"state-context-client",{"type":51,"value":1997}," - Context requires 'use client'",{"type":45,"tag":76,"props":1999,"children":2000},{},[2001,2007],{"type":45,"tag":135,"props":2002,"children":2004},{"className":2003},[],[2005],{"type":51,"value":2006},"state-zustand",{"type":51,"value":2008}," - Zustand works with hydration care",{"type":45,"tag":76,"props":2010,"children":2011},{},[2012,2018],{"type":45,"tag":135,"props":2013,"children":2015},{"className":2014},[],[2016],{"type":51,"value":2017},"state-redux",{"type":51,"value":2019}," - Configure Redux with Next.js",{"type":45,"tag":76,"props":2021,"children":2022},{},[2023,2029],{"type":45,"tag":135,"props":2024,"children":2026},{"className":2025},[],[2027],{"type":51,"value":2028},"state-jotai",{"type":51,"value":2030}," - Configure Jotai properly",{"type":45,"tag":76,"props":2032,"children":2033},{},[2034,2040],{"type":45,"tag":135,"props":2035,"children":2037},{"className":2036},[],[2038],{"type":51,"value":2039},"state-recoil",{"type":51,"value":2041}," - Configure Recoil properly",{"type":45,"tag":76,"props":2043,"children":2044},{},[2045,2051],{"type":45,"tag":135,"props":2046,"children":2048},{"className":2047},[],[2049],{"type":51,"value":2050},"state-url-state",{"type":51,"value":2052}," - Use URL for shareable state",{"type":45,"tag":76,"props":2054,"children":2055},{},[2056,2062],{"type":45,"tag":135,"props":2057,"children":2059},{"className":2058},[],[2060],{"type":51,"value":2061},"state-server-state",{"type":51,"value":2063}," - Minimize client state with RSC",{"type":45,"tag":76,"props":2065,"children":2066},{},[2067,2073],{"type":45,"tag":135,"props":2068,"children":2070},{"className":2069},[],[2071],{"type":51,"value":2072},"state-persistence",{"type":51,"value":2074}," - Handle state persistence",{"type":45,"tag":750,"props":2076,"children":2078},{"id":2077},"_14-integrations-medium",[2079],{"type":51,"value":2080},"14. Integrations (MEDIUM)",{"type":45,"tag":72,"props":2082,"children":2083},{},[2084],{"type":45,"tag":76,"props":2085,"children":2086},{},[2087,2093],{"type":45,"tag":135,"props":2088,"children":2090},{"className":2089},[],[2091],{"type":51,"value":2092},"integrations-sentry",{"type":51,"value":2094}," - Migrate Sentry error monitoring",{"type":45,"tag":750,"props":2096,"children":2098},{"id":2097},"_15-testing-low",[2099],{"type":51,"value":2100},"15. Testing (LOW)",{"type":45,"tag":72,"props":2102,"children":2103},{},[2104,2115,2126,2137,2148,2159,2170,2181,2192],{"type":45,"tag":76,"props":2105,"children":2106},{},[2107,2113],{"type":45,"tag":135,"props":2108,"children":2110},{"className":2109},[],[2111],{"type":51,"value":2112},"testing-jest-config",{"type":51,"value":2114}," - Update Jest configuration",{"type":45,"tag":76,"props":2116,"children":2117},{},[2118,2124],{"type":45,"tag":135,"props":2119,"children":2121},{"className":2120},[],[2122],{"type":51,"value":2123},"testing-react-testing-library",{"type":51,"value":2125}," - RTL works the same",{"type":45,"tag":76,"props":2127,"children":2128},{},[2129,2135],{"type":45,"tag":135,"props":2130,"children":2132},{"className":2131},[],[2133],{"type":51,"value":2134},"testing-server-components",{"type":51,"value":2136}," - Test Server Components",{"type":45,"tag":76,"props":2138,"children":2139},{},[2140,2146],{"type":45,"tag":135,"props":2141,"children":2143},{"className":2142},[],[2144],{"type":51,"value":2145},"testing-client-components",{"type":51,"value":2147}," - Test Client Components",{"type":45,"tag":76,"props":2149,"children":2150},{},[2151,2157],{"type":45,"tag":135,"props":2152,"children":2154},{"className":2153},[],[2155],{"type":51,"value":2156},"testing-async-components",{"type":51,"value":2158}," - Test async components",{"type":45,"tag":76,"props":2160,"children":2161},{},[2162,2168],{"type":45,"tag":135,"props":2163,"children":2165},{"className":2164},[],[2166],{"type":51,"value":2167},"testing-mocking",{"type":51,"value":2169}," - Mock Next.js modules",{"type":45,"tag":76,"props":2171,"children":2172},{},[2173,2179],{"type":45,"tag":135,"props":2174,"children":2176},{"className":2175},[],[2177],{"type":51,"value":2178},"testing-e2e-cypress",{"type":51,"value":2180}," - Configure Cypress for Next.js",{"type":45,"tag":76,"props":2182,"children":2183},{},[2184,2190],{"type":45,"tag":135,"props":2185,"children":2187},{"className":2186},[],[2188],{"type":51,"value":2189},"testing-e2e-playwright",{"type":51,"value":2191}," - Configure Playwright for Next.js",{"type":45,"tag":76,"props":2193,"children":2194},{},[2195,2201],{"type":45,"tag":135,"props":2196,"children":2198},{"className":2197},[],[2199],{"type":51,"value":2200},"testing-api-routes",{"type":51,"value":2202}," - Test API Route Handlers",{"type":45,"tag":750,"props":2204,"children":2206},{"id":2205},"_16-build-deployment-low",[2207],{"type":51,"value":2208},"16. Build & Deployment (LOW)",{"type":45,"tag":72,"props":2210,"children":2211},{},[2212,2223,2234,2245,2256,2267,2278],{"type":45,"tag":76,"props":2213,"children":2214},{},[2215,2221],{"type":45,"tag":135,"props":2216,"children":2218},{"className":2217},[],[2219],{"type":51,"value":2220},"build-scripts",{"type":51,"value":2222}," - Update build scripts",{"type":45,"tag":76,"props":2224,"children":2225},{},[2226,2232],{"type":45,"tag":135,"props":2227,"children":2229},{"className":2228},[],[2230],{"type":51,"value":2231},"build-output",{"type":51,"value":2233}," - Understand build output",{"type":45,"tag":76,"props":2235,"children":2236},{},[2237,2243],{"type":45,"tag":135,"props":2238,"children":2240},{"className":2239},[],[2241],{"type":51,"value":2242},"build-standalone",{"type":51,"value":2244}," - Configure standalone output",{"type":45,"tag":76,"props":2246,"children":2247},{},[2248,2254],{"type":45,"tag":135,"props":2249,"children":2251},{"className":2250},[],[2252],{"type":51,"value":2253},"build-static-export",{"type":51,"value":2255}," - Configure static export",{"type":45,"tag":76,"props":2257,"children":2258},{},[2259,2265],{"type":45,"tag":135,"props":2260,"children":2262},{"className":2261},[],[2263],{"type":51,"value":2264},"build-bundle-analysis",{"type":51,"value":2266}," - Analyze bundle size",{"type":45,"tag":76,"props":2268,"children":2269},{},[2270,2276],{"type":45,"tag":135,"props":2271,"children":2273},{"className":2272},[],[2274],{"type":51,"value":2275},"build-vercel",{"type":51,"value":2277}," - Deploy to Vercel",{"type":45,"tag":76,"props":2279,"children":2280},{},[2281,2287],{"type":45,"tag":135,"props":2282,"children":2284},{"className":2283},[],[2285],{"type":51,"value":2286},"build-docker",{"type":51,"value":2288}," - Configure Docker deployment",{"type":45,"tag":750,"props":2290,"children":2292},{"id":2291},"_17-common-gotchas-high",[2293],{"type":51,"value":2294},"17. Common Gotchas (HIGH)",{"type":45,"tag":72,"props":2296,"children":2297},{},[2298,2309,2320,2331,2342,2353,2364,2375,2386,2397,2408,2419,2430,2441,2452,2463,2474,2485,2496,2507,2518,2529,2540,2551],{"type":45,"tag":76,"props":2299,"children":2300},{},[2301,2307],{"type":45,"tag":135,"props":2302,"children":2304},{"className":2303},[],[2305],{"type":51,"value":2306},"gotchas-window-undefined",{"type":51,"value":2308}," - Handle window\u002Fdocument in SSR",{"type":45,"tag":76,"props":2310,"children":2311},{},[2312,2318],{"type":45,"tag":135,"props":2313,"children":2315},{"className":2314},[],[2316],{"type":51,"value":2317},"gotchas-hydration-mismatch",{"type":51,"value":2319}," - Fix hydration mismatches",{"type":45,"tag":76,"props":2321,"children":2322},{},[2323,2329],{"type":45,"tag":135,"props":2324,"children":2326},{"className":2325},[],[2327],{"type":51,"value":2328},"gotchas-use-effect-timing",{"type":51,"value":2330}," - Understand useEffect in Next.js",{"type":45,"tag":76,"props":2332,"children":2333},{},[2334,2340],{"type":45,"tag":135,"props":2335,"children":2337},{"className":2336},[],[2338],{"type":51,"value":2339},"gotchas-router-ready",{"type":51,"value":2341}," - Check router.isReady for query params",{"type":45,"tag":76,"props":2343,"children":2344},{},[2345,2351],{"type":45,"tag":135,"props":2346,"children":2348},{"className":2347},[],[2349],{"type":51,"value":2350},"gotchas-dynamic-imports",{"type":51,"value":2352}," - Use next\u002Fdynamic properly",{"type":45,"tag":76,"props":2354,"children":2355},{},[2356,2362],{"type":45,"tag":135,"props":2357,"children":2359},{"className":2358},[],[2360],{"type":51,"value":2361},"gotchas-api-routes-edge",{"type":51,"value":2363}," - Edge vs Node.js runtime",{"type":45,"tag":76,"props":2365,"children":2366},{},[2367,2373],{"type":45,"tag":135,"props":2368,"children":2370},{"className":2369},[],[2371],{"type":51,"value":2372},"gotchas-middleware",{"type":51,"value":2374}," - Middleware runs on edge",{"type":45,"tag":76,"props":2376,"children":2377},{},[2378,2384],{"type":45,"tag":135,"props":2379,"children":2381},{"className":2380},[],[2382],{"type":51,"value":2383},"gotchas-static-generation",{"type":51,"value":2385}," - Static vs dynamic rendering",{"type":45,"tag":76,"props":2387,"children":2388},{},[2389,2395],{"type":45,"tag":135,"props":2390,"children":2392},{"className":2391},[],[2393],{"type":51,"value":2394},"gotchas-redirect",{"type":51,"value":2396}," - Handle redirects properly",{"type":45,"tag":76,"props":2398,"children":2399},{},[2400,2406],{"type":45,"tag":135,"props":2401,"children":2403},{"className":2402},[],[2404],{"type":51,"value":2405},"gotchas-headers",{"type":51,"value":2407}," - Set response headers",{"type":45,"tag":76,"props":2409,"children":2410},{},[2411,2417],{"type":45,"tag":135,"props":2412,"children":2414},{"className":2413},[],[2415],{"type":51,"value":2416},"gotchas-cookies",{"type":51,"value":2418}," - Handle cookies in RSC",{"type":45,"tag":76,"props":2420,"children":2421},{},[2422,2428],{"type":45,"tag":135,"props":2423,"children":2425},{"className":2424},[],[2426],{"type":51,"value":2427},"gotchas-turbopack",{"type":51,"value":2429}," - Handle Turbopack compatibility issues",{"type":45,"tag":76,"props":2431,"children":2432},{},[2433,2439],{"type":45,"tag":135,"props":2434,"children":2436},{"className":2435},[],[2437],{"type":51,"value":2438},"gotchas-empty-modules",{"type":51,"value":2440}," - Fix empty module exports for isolatedModules",{"type":45,"tag":76,"props":2442,"children":2443},{},[2444,2450],{"type":45,"tag":135,"props":2445,"children":2447},{"className":2446},[],[2448],{"type":51,"value":2449},"gotchas-nullish-coalescing",{"type":51,"value":2451}," - Fix nullish coalescing runtime errors",{"type":45,"tag":76,"props":2453,"children":2454},{},[2455,2461],{"type":45,"tag":135,"props":2456,"children":2458},{"className":2457},[],[2459],{"type":51,"value":2460},"gotchas-react19-class-components",{"type":51,"value":2462}," - Fix React 19 class component this binding",{"type":45,"tag":76,"props":2464,"children":2465},{},[2466,2472],{"type":45,"tag":135,"props":2467,"children":2469},{"className":2468},[],[2470],{"type":51,"value":2471},"gotchas-react19-ref-prop",{"type":51,"value":2473}," - Handle React 19 ref prop changes",{"type":45,"tag":76,"props":2475,"children":2476},{},[2477,2483],{"type":45,"tag":135,"props":2478,"children":2480},{"className":2479},[],[2481],{"type":51,"value":2482},"gotchas-websocket-optional-deps",{"type":51,"value":2484}," - Handle WebSocket native dependency bundling",{"type":45,"tag":76,"props":2486,"children":2487},{},[2488,2494],{"type":45,"tag":135,"props":2489,"children":2491},{"className":2490},[],[2492],{"type":51,"value":2493},"gotchas-auth-race-conditions",{"type":51,"value":2495}," - Guard against auth\u002FAPI race conditions",{"type":45,"tag":76,"props":2497,"children":2498},{},[2499,2505],{"type":45,"tag":135,"props":2500,"children":2502},{"className":2501},[],[2503],{"type":51,"value":2504},"gotchas-auth-state-gating",{"type":51,"value":2506}," - Wait for auth state before checking roles",{"type":45,"tag":76,"props":2508,"children":2509},{},[2510,2516],{"type":45,"tag":135,"props":2511,"children":2513},{"className":2512},[],[2514],{"type":51,"value":2515},"gotchas-configuration-idempotency",{"type":51,"value":2517}," - Ensure configuration idempotency with useRef",{"type":45,"tag":76,"props":2519,"children":2520},{},[2521,2527],{"type":45,"tag":135,"props":2522,"children":2524},{"className":2523},[],[2525],{"type":51,"value":2526},"gotchas-hydration-nested-interactive",{"type":51,"value":2528}," - Avoid nested interactive elements",{"type":45,"tag":76,"props":2530,"children":2531},{},[2532,2538],{"type":45,"tag":135,"props":2533,"children":2535},{"className":2534},[],[2536],{"type":51,"value":2537},"gotchas-router-push-timing",{"type":51,"value":2539}," - Never call router.push during render",{"type":45,"tag":76,"props":2541,"children":2542},{},[2543,2549],{"type":45,"tag":135,"props":2544,"children":2546},{"className":2545},[],[2547],{"type":51,"value":2548},"gotchas-infinite-rerender",{"type":51,"value":2550}," - Prevent infinite re-render loops",{"type":45,"tag":76,"props":2552,"children":2553},{},[2554,2560],{"type":45,"tag":135,"props":2555,"children":2557},{"className":2556},[],[2558],{"type":51,"value":2559},"gotchas-provider-hierarchy",{"type":51,"value":2561}," - Configure provider hierarchy correctly",{"type":45,"tag":60,"props":2563,"children":2565},{"id":2564},"pre-migration-checklist",[2566],{"type":51,"value":2567},"Pre-Migration Checklist",{"type":45,"tag":54,"props":2569,"children":2570},{},[2571],{"type":51,"value":2572},"Before starting migration, scan the codebase for patterns that need special handling:",{"type":45,"tag":127,"props":2574,"children":2576},{"className":129,"code":2575,"language":131,"meta":132,"style":132},"# Check for WebSocket libraries (needs webpack fallback config)\ngrep -E \"(socket\\.io|\\\"ws\\\")\" package.json\n\n# Check for SCSS :export syntax (may need --webpack flag)\ngrep -r \":export\" --include=\"*.scss\" src\u002F\n\n# Check for SVG ReactComponent imports (needs SVGR config)\ngrep -r \"ReactComponent\" --include=\"*.ts\" --include=\"*.tsx\" src\u002F\n\n# List all REACT_APP_ environment variables\ngrep -roh \"REACT_APP_[A-Z_]*\" --include=\"*.ts\" --include=\"*.tsx\" --include=\"*.js\" --include=\"*.jsx\" src\u002F | sort -u\n\n# Check for Redux extraReducers using object notation (must convert to builder pattern for RTK v2)\ngrep -r \"extraReducers:\" --include=\"*.js\" --include=\"*.jsx\" --include=\"*.ts\" --include=\"*.tsx\" src\u002F\n\n# Check for \u002Fapp\u002F paths that need updating if using (app) route group\ngrep -rE \"(href|to|push|replace|redirect).*['\\\"]\\\u002Fapp\\\u002F\" --include=\"*.js\" --include=\"*.jsx\" --include=\"*.ts\" --include=\"*.tsx\" src\u002F\n",[2577],{"type":45,"tag":135,"props":2578,"children":2579},{"__ignoreMap":132},[2580,2589,2644,2653,2662,2711,2719,2728,2791,2799,2808,2919,2927,2936,3029,3037,3046],{"type":45,"tag":139,"props":2581,"children":2582},{"class":141,"line":142},[2583],{"type":45,"tag":139,"props":2584,"children":2586},{"style":2585},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[2587],{"type":51,"value":2588},"# Check for WebSocket libraries (needs webpack fallback config)\n",{"type":45,"tag":139,"props":2590,"children":2592},{"class":141,"line":2591},2,[2593,2598,2603,2609,2614,2620,2625,2629,2634,2639],{"type":45,"tag":139,"props":2594,"children":2595},{"style":146},[2596],{"type":51,"value":2597},"grep",{"type":45,"tag":139,"props":2599,"children":2600},{"style":152},[2601],{"type":51,"value":2602}," -E",{"type":45,"tag":139,"props":2604,"children":2606},{"style":2605},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[2607],{"type":51,"value":2608}," \"",{"type":45,"tag":139,"props":2610,"children":2611},{"style":152},[2612],{"type":51,"value":2613},"(socket\\.io|",{"type":45,"tag":139,"props":2615,"children":2617},{"style":2616},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[2618],{"type":51,"value":2619},"\\\"",{"type":45,"tag":139,"props":2621,"children":2622},{"style":152},[2623],{"type":51,"value":2624},"ws",{"type":45,"tag":139,"props":2626,"children":2627},{"style":2616},[2628],{"type":51,"value":2619},{"type":45,"tag":139,"props":2630,"children":2631},{"style":152},[2632],{"type":51,"value":2633},")",{"type":45,"tag":139,"props":2635,"children":2636},{"style":2605},[2637],{"type":51,"value":2638},"\"",{"type":45,"tag":139,"props":2640,"children":2641},{"style":152},[2642],{"type":51,"value":2643}," package.json\n",{"type":45,"tag":139,"props":2645,"children":2646},{"class":141,"line":29},[2647],{"type":45,"tag":139,"props":2648,"children":2650},{"emptyLinePlaceholder":2649},true,[2651],{"type":51,"value":2652},"\n",{"type":45,"tag":139,"props":2654,"children":2656},{"class":141,"line":2655},4,[2657],{"type":45,"tag":139,"props":2658,"children":2659},{"style":2585},[2660],{"type":51,"value":2661},"# Check for SCSS :export syntax (may need --webpack flag)\n",{"type":45,"tag":139,"props":2663,"children":2665},{"class":141,"line":2664},5,[2666,2670,2675,2679,2684,2688,2693,2697,2702,2706],{"type":45,"tag":139,"props":2667,"children":2668},{"style":146},[2669],{"type":51,"value":2597},{"type":45,"tag":139,"props":2671,"children":2672},{"style":152},[2673],{"type":51,"value":2674}," -r",{"type":45,"tag":139,"props":2676,"children":2677},{"style":2605},[2678],{"type":51,"value":2608},{"type":45,"tag":139,"props":2680,"children":2681},{"style":152},[2682],{"type":51,"value":2683},":export",{"type":45,"tag":139,"props":2685,"children":2686},{"style":2605},[2687],{"type":51,"value":2638},{"type":45,"tag":139,"props":2689,"children":2690},{"style":152},[2691],{"type":51,"value":2692}," --include=",{"type":45,"tag":139,"props":2694,"children":2695},{"style":2605},[2696],{"type":51,"value":2638},{"type":45,"tag":139,"props":2698,"children":2699},{"style":152},[2700],{"type":51,"value":2701},"*.scss",{"type":45,"tag":139,"props":2703,"children":2704},{"style":2605},[2705],{"type":51,"value":2638},{"type":45,"tag":139,"props":2707,"children":2708},{"style":152},[2709],{"type":51,"value":2710}," src\u002F\n",{"type":45,"tag":139,"props":2712,"children":2714},{"class":141,"line":2713},6,[2715],{"type":45,"tag":139,"props":2716,"children":2717},{"emptyLinePlaceholder":2649},[2718],{"type":51,"value":2652},{"type":45,"tag":139,"props":2720,"children":2722},{"class":141,"line":2721},7,[2723],{"type":45,"tag":139,"props":2724,"children":2725},{"style":2585},[2726],{"type":51,"value":2727},"# Check for SVG ReactComponent imports (needs SVGR config)\n",{"type":45,"tag":139,"props":2729,"children":2731},{"class":141,"line":2730},8,[2732,2736,2740,2744,2749,2753,2757,2761,2766,2770,2774,2778,2783,2787],{"type":45,"tag":139,"props":2733,"children":2734},{"style":146},[2735],{"type":51,"value":2597},{"type":45,"tag":139,"props":2737,"children":2738},{"style":152},[2739],{"type":51,"value":2674},{"type":45,"tag":139,"props":2741,"children":2742},{"style":2605},[2743],{"type":51,"value":2608},{"type":45,"tag":139,"props":2745,"children":2746},{"style":152},[2747],{"type":51,"value":2748},"ReactComponent",{"type":45,"tag":139,"props":2750,"children":2751},{"style":2605},[2752],{"type":51,"value":2638},{"type":45,"tag":139,"props":2754,"children":2755},{"style":152},[2756],{"type":51,"value":2692},{"type":45,"tag":139,"props":2758,"children":2759},{"style":2605},[2760],{"type":51,"value":2638},{"type":45,"tag":139,"props":2762,"children":2763},{"style":152},[2764],{"type":51,"value":2765},"*.ts",{"type":45,"tag":139,"props":2767,"children":2768},{"style":2605},[2769],{"type":51,"value":2638},{"type":45,"tag":139,"props":2771,"children":2772},{"style":152},[2773],{"type":51,"value":2692},{"type":45,"tag":139,"props":2775,"children":2776},{"style":2605},[2777],{"type":51,"value":2638},{"type":45,"tag":139,"props":2779,"children":2780},{"style":152},[2781],{"type":51,"value":2782},"*.tsx",{"type":45,"tag":139,"props":2784,"children":2785},{"style":2605},[2786],{"type":51,"value":2638},{"type":45,"tag":139,"props":2788,"children":2789},{"style":152},[2790],{"type":51,"value":2710},{"type":45,"tag":139,"props":2792,"children":2794},{"class":141,"line":2793},9,[2795],{"type":45,"tag":139,"props":2796,"children":2797},{"emptyLinePlaceholder":2649},[2798],{"type":51,"value":2652},{"type":45,"tag":139,"props":2800,"children":2802},{"class":141,"line":2801},10,[2803],{"type":45,"tag":139,"props":2804,"children":2805},{"style":2585},[2806],{"type":51,"value":2807},"# List all REACT_APP_ environment variables\n",{"type":45,"tag":139,"props":2809,"children":2810},{"class":141,"line":25},[2811,2815,2820,2824,2829,2833,2837,2841,2845,2849,2853,2857,2861,2865,2869,2873,2878,2882,2886,2890,2895,2899,2904,2909,2914],{"type":45,"tag":139,"props":2812,"children":2813},{"style":146},[2814],{"type":51,"value":2597},{"type":45,"tag":139,"props":2816,"children":2817},{"style":152},[2818],{"type":51,"value":2819}," -roh",{"type":45,"tag":139,"props":2821,"children":2822},{"style":2605},[2823],{"type":51,"value":2608},{"type":45,"tag":139,"props":2825,"children":2826},{"style":152},[2827],{"type":51,"value":2828},"REACT_APP_[A-Z_]*",{"type":45,"tag":139,"props":2830,"children":2831},{"style":2605},[2832],{"type":51,"value":2638},{"type":45,"tag":139,"props":2834,"children":2835},{"style":152},[2836],{"type":51,"value":2692},{"type":45,"tag":139,"props":2838,"children":2839},{"style":2605},[2840],{"type":51,"value":2638},{"type":45,"tag":139,"props":2842,"children":2843},{"style":152},[2844],{"type":51,"value":2765},{"type":45,"tag":139,"props":2846,"children":2847},{"style":2605},[2848],{"type":51,"value":2638},{"type":45,"tag":139,"props":2850,"children":2851},{"style":152},[2852],{"type":51,"value":2692},{"type":45,"tag":139,"props":2854,"children":2855},{"style":2605},[2856],{"type":51,"value":2638},{"type":45,"tag":139,"props":2858,"children":2859},{"style":152},[2860],{"type":51,"value":2782},{"type":45,"tag":139,"props":2862,"children":2863},{"style":2605},[2864],{"type":51,"value":2638},{"type":45,"tag":139,"props":2866,"children":2867},{"style":152},[2868],{"type":51,"value":2692},{"type":45,"tag":139,"props":2870,"children":2871},{"style":2605},[2872],{"type":51,"value":2638},{"type":45,"tag":139,"props":2874,"children":2875},{"style":152},[2876],{"type":51,"value":2877},"*.js",{"type":45,"tag":139,"props":2879,"children":2880},{"style":2605},[2881],{"type":51,"value":2638},{"type":45,"tag":139,"props":2883,"children":2884},{"style":152},[2885],{"type":51,"value":2692},{"type":45,"tag":139,"props":2887,"children":2888},{"style":2605},[2889],{"type":51,"value":2638},{"type":45,"tag":139,"props":2891,"children":2892},{"style":152},[2893],{"type":51,"value":2894},"*.jsx",{"type":45,"tag":139,"props":2896,"children":2897},{"style":2605},[2898],{"type":51,"value":2638},{"type":45,"tag":139,"props":2900,"children":2901},{"style":152},[2902],{"type":51,"value":2903}," src\u002F",{"type":45,"tag":139,"props":2905,"children":2906},{"style":2605},[2907],{"type":51,"value":2908}," |",{"type":45,"tag":139,"props":2910,"children":2911},{"style":146},[2912],{"type":51,"value":2913}," sort",{"type":45,"tag":139,"props":2915,"children":2916},{"style":152},[2917],{"type":51,"value":2918}," -u\n",{"type":45,"tag":139,"props":2920,"children":2922},{"class":141,"line":2921},12,[2923],{"type":45,"tag":139,"props":2924,"children":2925},{"emptyLinePlaceholder":2649},[2926],{"type":51,"value":2652},{"type":45,"tag":139,"props":2928,"children":2930},{"class":141,"line":2929},13,[2931],{"type":45,"tag":139,"props":2932,"children":2933},{"style":2585},[2934],{"type":51,"value":2935},"# Check for Redux extraReducers using object notation (must convert to builder pattern for RTK v2)\n",{"type":45,"tag":139,"props":2937,"children":2939},{"class":141,"line":2938},14,[2940,2944,2948,2952,2957,2961,2965,2969,2973,2977,2981,2985,2989,2993,2997,3001,3005,3009,3013,3017,3021,3025],{"type":45,"tag":139,"props":2941,"children":2942},{"style":146},[2943],{"type":51,"value":2597},{"type":45,"tag":139,"props":2945,"children":2946},{"style":152},[2947],{"type":51,"value":2674},{"type":45,"tag":139,"props":2949,"children":2950},{"style":2605},[2951],{"type":51,"value":2608},{"type":45,"tag":139,"props":2953,"children":2954},{"style":152},[2955],{"type":51,"value":2956},"extraReducers:",{"type":45,"tag":139,"props":2958,"children":2959},{"style":2605},[2960],{"type":51,"value":2638},{"type":45,"tag":139,"props":2962,"children":2963},{"style":152},[2964],{"type":51,"value":2692},{"type":45,"tag":139,"props":2966,"children":2967},{"style":2605},[2968],{"type":51,"value":2638},{"type":45,"tag":139,"props":2970,"children":2971},{"style":152},[2972],{"type":51,"value":2877},{"type":45,"tag":139,"props":2974,"children":2975},{"style":2605},[2976],{"type":51,"value":2638},{"type":45,"tag":139,"props":2978,"children":2979},{"style":152},[2980],{"type":51,"value":2692},{"type":45,"tag":139,"props":2982,"children":2983},{"style":2605},[2984],{"type":51,"value":2638},{"type":45,"tag":139,"props":2986,"children":2987},{"style":152},[2988],{"type":51,"value":2894},{"type":45,"tag":139,"props":2990,"children":2991},{"style":2605},[2992],{"type":51,"value":2638},{"type":45,"tag":139,"props":2994,"children":2995},{"style":152},[2996],{"type":51,"value":2692},{"type":45,"tag":139,"props":2998,"children":2999},{"style":2605},[3000],{"type":51,"value":2638},{"type":45,"tag":139,"props":3002,"children":3003},{"style":152},[3004],{"type":51,"value":2765},{"type":45,"tag":139,"props":3006,"children":3007},{"style":2605},[3008],{"type":51,"value":2638},{"type":45,"tag":139,"props":3010,"children":3011},{"style":152},[3012],{"type":51,"value":2692},{"type":45,"tag":139,"props":3014,"children":3015},{"style":2605},[3016],{"type":51,"value":2638},{"type":45,"tag":139,"props":3018,"children":3019},{"style":152},[3020],{"type":51,"value":2782},{"type":45,"tag":139,"props":3022,"children":3023},{"style":2605},[3024],{"type":51,"value":2638},{"type":45,"tag":139,"props":3026,"children":3027},{"style":152},[3028],{"type":51,"value":2710},{"type":45,"tag":139,"props":3030,"children":3032},{"class":141,"line":3031},15,[3033],{"type":45,"tag":139,"props":3034,"children":3035},{"emptyLinePlaceholder":2649},[3036],{"type":51,"value":2652},{"type":45,"tag":139,"props":3038,"children":3040},{"class":141,"line":3039},16,[3041],{"type":45,"tag":139,"props":3042,"children":3043},{"style":2585},[3044],{"type":51,"value":3045},"# Check for \u002Fapp\u002F paths that need updating if using (app) route group\n",{"type":45,"tag":139,"props":3047,"children":3049},{"class":141,"line":3048},17,[3050,3054,3059,3063,3068,3072,3077,3081,3085,3089,3093,3097,3101,3105,3109,3113,3117,3121,3125,3129,3133,3137,3141,3145],{"type":45,"tag":139,"props":3051,"children":3052},{"style":146},[3053],{"type":51,"value":2597},{"type":45,"tag":139,"props":3055,"children":3056},{"style":152},[3057],{"type":51,"value":3058}," -rE",{"type":45,"tag":139,"props":3060,"children":3061},{"style":2605},[3062],{"type":51,"value":2608},{"type":45,"tag":139,"props":3064,"children":3065},{"style":152},[3066],{"type":51,"value":3067},"(href|to|push|replace|redirect).*['",{"type":45,"tag":139,"props":3069,"children":3070},{"style":2616},[3071],{"type":51,"value":2619},{"type":45,"tag":139,"props":3073,"children":3074},{"style":152},[3075],{"type":51,"value":3076},"]\\\u002Fapp\\\u002F",{"type":45,"tag":139,"props":3078,"children":3079},{"style":2605},[3080],{"type":51,"value":2638},{"type":45,"tag":139,"props":3082,"children":3083},{"style":152},[3084],{"type":51,"value":2692},{"type":45,"tag":139,"props":3086,"children":3087},{"style":2605},[3088],{"type":51,"value":2638},{"type":45,"tag":139,"props":3090,"children":3091},{"style":152},[3092],{"type":51,"value":2877},{"type":45,"tag":139,"props":3094,"children":3095},{"style":2605},[3096],{"type":51,"value":2638},{"type":45,"tag":139,"props":3098,"children":3099},{"style":152},[3100],{"type":51,"value":2692},{"type":45,"tag":139,"props":3102,"children":3103},{"style":2605},[3104],{"type":51,"value":2638},{"type":45,"tag":139,"props":3106,"children":3107},{"style":152},[3108],{"type":51,"value":2894},{"type":45,"tag":139,"props":3110,"children":3111},{"style":2605},[3112],{"type":51,"value":2638},{"type":45,"tag":139,"props":3114,"children":3115},{"style":152},[3116],{"type":51,"value":2692},{"type":45,"tag":139,"props":3118,"children":3119},{"style":2605},[3120],{"type":51,"value":2638},{"type":45,"tag":139,"props":3122,"children":3123},{"style":152},[3124],{"type":51,"value":2765},{"type":45,"tag":139,"props":3126,"children":3127},{"style":2605},[3128],{"type":51,"value":2638},{"type":45,"tag":139,"props":3130,"children":3131},{"style":152},[3132],{"type":51,"value":2692},{"type":45,"tag":139,"props":3134,"children":3135},{"style":2605},[3136],{"type":51,"value":2638},{"type":45,"tag":139,"props":3138,"children":3139},{"style":152},[3140],{"type":51,"value":2782},{"type":45,"tag":139,"props":3142,"children":3143},{"style":2605},[3144],{"type":51,"value":2638},{"type":45,"tag":139,"props":3146,"children":3147},{"style":152},[3148],{"type":51,"value":2710},{"type":45,"tag":54,"props":3150,"children":3151},{},[3152],{"type":45,"tag":116,"props":3153,"children":3154},{},[3155],{"type":51,"value":3156},"Scan Results to Rule Mapping:",{"type":45,"tag":186,"props":3158,"children":3159},{},[3160,3176],{"type":45,"tag":190,"props":3161,"children":3162},{},[3163],{"type":45,"tag":194,"props":3164,"children":3165},{},[3166,3171],{"type":45,"tag":198,"props":3167,"children":3168},{},[3169],{"type":51,"value":3170},"Scan Result",{"type":45,"tag":198,"props":3172,"children":3173},{},[3174],{"type":51,"value":3175},"Rules to Read",{"type":45,"tag":224,"props":3177,"children":3178},{},[3179,3202,3223,3244,3266,3289],{"type":45,"tag":194,"props":3180,"children":3181},{},[3182,3187],{"type":45,"tag":231,"props":3183,"children":3184},{},[3185],{"type":51,"value":3186},"socket.io or ws in package.json",{"type":45,"tag":231,"props":3188,"children":3189},{},[3190,3195,3197],{"type":45,"tag":135,"props":3191,"children":3193},{"className":3192},[],[3194],{"type":51,"value":2482},{"type":51,"value":3196},", ",{"type":45,"tag":135,"props":3198,"children":3200},{"className":3199},[],[3201],{"type":51,"value":789},{"type":45,"tag":194,"props":3203,"children":3204},{},[3205,3215],{"type":45,"tag":231,"props":3206,"children":3207},{},[3208,3213],{"type":45,"tag":135,"props":3209,"children":3211},{"className":3210},[],[3212],{"type":51,"value":2683},{"type":51,"value":3214}," in SCSS files",{"type":45,"tag":231,"props":3216,"children":3217},{},[3218],{"type":45,"tag":135,"props":3219,"children":3221},{"className":3220},[],[3222],{"type":51,"value":2427},{"type":45,"tag":194,"props":3224,"children":3225},{},[3226,3236],{"type":45,"tag":231,"props":3227,"children":3228},{},[3229,3234],{"type":45,"tag":135,"props":3230,"children":3232},{"className":3231},[],[3233],{"type":51,"value":2748},{"type":51,"value":3235}," SVG imports",{"type":45,"tag":231,"props":3237,"children":3238},{},[3239],{"type":45,"tag":135,"props":3240,"children":3242},{"className":3241},[],[3243],{"type":51,"value":1554},{"type":45,"tag":194,"props":3245,"children":3246},{},[3247,3258],{"type":45,"tag":231,"props":3248,"children":3249},{},[3250,3256],{"type":45,"tag":135,"props":3251,"children":3253},{"className":3252},[],[3254],{"type":51,"value":3255},"REACT_APP_",{"type":51,"value":3257}," variables found",{"type":45,"tag":231,"props":3259,"children":3260},{},[3261],{"type":45,"tag":135,"props":3262,"children":3264},{"className":3263},[],[3265],{"type":51,"value":1309},{"type":45,"tag":194,"props":3267,"children":3268},{},[3269,3279],{"type":45,"tag":231,"props":3270,"children":3271},{},[3272,3277],{"type":45,"tag":135,"props":3273,"children":3275},{"className":3274},[],[3276],{"type":51,"value":2956},{"type":51,"value":3278}," found",{"type":45,"tag":231,"props":3280,"children":3281},{},[3282,3287],{"type":45,"tag":135,"props":3283,"children":3285},{"className":3284},[],[3286],{"type":51,"value":2017},{"type":51,"value":3288}," (RTK v2 builder callback required)",{"type":45,"tag":194,"props":3290,"children":3291},{},[3292,3303],{"type":45,"tag":231,"props":3293,"children":3294},{},[3295,3301],{"type":45,"tag":135,"props":3296,"children":3298},{"className":3297},[],[3299],{"type":51,"value":3300},"\u002Fapp\u002F",{"type":51,"value":3302}," paths in navigation",{"type":45,"tag":231,"props":3304,"children":3305},{},[3306,3311],{"type":45,"tag":135,"props":3307,"children":3309},{"className":3308},[],[3310],{"type":51,"value":919},{"type":51,"value":3312}," (update paths for route groups)",{"type":45,"tag":60,"props":3314,"children":3316},{"id":3315},"how-to-use",[3317],{"type":51,"value":3318},"How to Use",{"type":45,"tag":54,"props":3320,"children":3321},{},[3322],{"type":51,"value":3323},"Read individual rule files for detailed explanations and code examples:",{"type":45,"tag":127,"props":3325,"children":3329},{"className":3326,"code":3328,"language":51},[3327],"language-text","rules\u002Fsetup-initial-structure.md\nrules\u002Frouting-basic-pages.md\nrules\u002Fdata-useeffect-to-rsc.md\n",[3330],{"type":45,"tag":135,"props":3331,"children":3332},{"__ignoreMap":132},[3333],{"type":51,"value":3328},{"type":45,"tag":54,"props":3335,"children":3336},{},[3337],{"type":51,"value":3338},"Each rule file contains:",{"type":45,"tag":72,"props":3340,"children":3341},{},[3342,3347,3352,3357],{"type":45,"tag":76,"props":3343,"children":3344},{},[3345],{"type":51,"value":3346},"Brief explanation of the migration step",{"type":45,"tag":76,"props":3348,"children":3349},{},[3350],{"type":51,"value":3351},"CRA \"before\" code example",{"type":45,"tag":76,"props":3353,"children":3354},{},[3355],{"type":51,"value":3356},"Next.js \"after\" code example",{"type":45,"tag":76,"props":3358,"children":3359},{},[3360],{"type":51,"value":3361},"Additional context and gotchas",{"type":45,"tag":60,"props":3363,"children":3365},{"id":3364},"migration-order",[3366],{"type":51,"value":3367},"Migration Order",{"type":45,"tag":54,"props":3369,"children":3370},{},[3371],{"type":51,"value":3372},"For best results, migrate in this order:",{"type":45,"tag":3374,"props":3375,"children":3376},"ol",{},[3377,3387,3396,3405,3414,3423,3432,3442,3452,3461],{"type":45,"tag":76,"props":3378,"children":3379},{},[3380,3385],{"type":45,"tag":116,"props":3381,"children":3382},{},[3383],{"type":51,"value":3384},"Setup",{"type":51,"value":3386}," - Initialize Next.js project structure",{"type":45,"tag":76,"props":3388,"children":3389},{},[3390,3394],{"type":45,"tag":116,"props":3391,"children":3392},{},[3393],{"type":51,"value":302},{"type":51,"value":3395}," - Convert React Router to file-based routing",{"type":45,"tag":76,"props":3397,"children":3398},{},[3399,3403],{"type":45,"tag":116,"props":3400,"children":3401},{},[3402],{"type":51,"value":395},{"type":51,"value":3404}," - Update env var prefixes",{"type":45,"tag":76,"props":3406,"children":3407},{},[3408,3412],{"type":45,"tag":116,"props":3409,"children":3410},{},[3411],{"type":51,"value":364},{"type":51,"value":3413}," - Add 'use client' directives where needed",{"type":45,"tag":76,"props":3415,"children":3416},{},[3417,3421],{"type":45,"tag":116,"props":3418,"children":3419},{},[3420],{"type":51,"value":333},{"type":51,"value":3422}," - Convert useEffect to server patterns",{"type":45,"tag":76,"props":3424,"children":3425},{},[3426,3430],{"type":45,"tag":116,"props":3427,"children":3428},{},[3429],{"type":51,"value":425},{"type":51,"value":3431}," - Move global CSS, configure CSS-in-JS",{"type":45,"tag":76,"props":3433,"children":3434},{},[3435,3440],{"type":45,"tag":116,"props":3436,"children":3437},{},[3438],{"type":51,"value":3439},"Images & Fonts",{"type":51,"value":3441}," - Adopt Next.js optimizations",{"type":45,"tag":76,"props":3443,"children":3444},{},[3445,3450],{"type":45,"tag":116,"props":3446,"children":3447},{},[3448],{"type":51,"value":3449},"SEO",{"type":51,"value":3451}," - Migrate to Metadata API",{"type":45,"tag":76,"props":3453,"children":3454},{},[3455,3459],{"type":45,"tag":116,"props":3456,"children":3457},{},[3458],{"type":51,"value":574},{"type":51,"value":3460}," - Create Route Handlers",{"type":45,"tag":76,"props":3462,"children":3463},{},[3464,3468],{"type":45,"tag":116,"props":3465,"children":3466},{},[3467],{"type":51,"value":664},{"type":51,"value":3469}," - Update test configuration",{"type":45,"tag":60,"props":3471,"children":3473},{"id":3472},"post-migration-verification-checklist",[3474],{"type":51,"value":3475},"Post-Migration Verification Checklist",{"type":45,"tag":54,"props":3477,"children":3478},{},[3479],{"type":51,"value":3480},"After migration, verify the application works correctly:",{"type":45,"tag":54,"props":3482,"children":3483},{},[3484],{"type":45,"tag":116,"props":3485,"children":3486},{},[3487],{"type":51,"value":3488},"Core Functionality:",{"type":45,"tag":72,"props":3490,"children":3493},{"className":3491},[3492],"contains-task-list",[3494,3514,3530,3546,3555],{"type":45,"tag":76,"props":3495,"children":3498},{"className":3496},[3497],"task-list-item",[3499,3504,3506,3512],{"type":45,"tag":3500,"props":3501,"children":3503},"input",{"disabled":2649,"type":3502},"checkbox",[],{"type":51,"value":3505}," ",{"type":45,"tag":135,"props":3507,"children":3509},{"className":3508},[],[3510],{"type":51,"value":3511},"npm run dev",{"type":51,"value":3513}," starts Next.js dev server without errors",{"type":45,"tag":76,"props":3515,"children":3517},{"className":3516},[3497],[3518,3521,3522,3528],{"type":45,"tag":3500,"props":3519,"children":3520},{"disabled":2649,"type":3502},[],{"type":51,"value":3505},{"type":45,"tag":135,"props":3523,"children":3525},{"className":3524},[],[3526],{"type":51,"value":3527},"npm run build",{"type":51,"value":3529}," completes successfully",{"type":45,"tag":76,"props":3531,"children":3533},{"className":3532},[3497],[3534,3537,3538,3544],{"type":45,"tag":3500,"props":3535,"children":3536},{"disabled":2649,"type":3502},[],{"type":51,"value":3505},{"type":45,"tag":135,"props":3539,"children":3541},{"className":3540},[],[3542],{"type":51,"value":3543},"npm start",{"type":51,"value":3545}," runs the production build",{"type":45,"tag":76,"props":3547,"children":3549},{"className":3548},[3497],[3550,3553],{"type":45,"tag":3500,"props":3551,"children":3552},{"disabled":2649,"type":3502},[],{"type":51,"value":3554}," Main application renders correctly",{"type":45,"tag":76,"props":3556,"children":3558},{"className":3557},[3497],[3559,3562],{"type":45,"tag":3500,"props":3560,"children":3561},{"disabled":2649,"type":3502},[],{"type":51,"value":3563}," All routes are accessible",{"type":45,"tag":54,"props":3565,"children":3566},{},[3567],{"type":45,"tag":116,"props":3568,"children":3569},{},[3570],{"type":51,"value":3571},"Client-Side Features:",{"type":45,"tag":72,"props":3573,"children":3575},{"className":3574},[3492],[3576,3585,3594,3603],{"type":45,"tag":76,"props":3577,"children":3579},{"className":3578},[3497],[3580,3583],{"type":45,"tag":3500,"props":3581,"children":3582},{"disabled":2649,"type":3502},[],{"type":51,"value":3584}," localStorage\u002FsessionStorage persistence works",{"type":45,"tag":76,"props":3586,"children":3588},{"className":3587},[3497],[3589,3592],{"type":45,"tag":3500,"props":3590,"children":3591},{"disabled":2649,"type":3502},[],{"type":51,"value":3593}," Dark mode or theme toggles work and persist",{"type":45,"tag":76,"props":3595,"children":3597},{"className":3596},[3497],[3598,3601],{"type":45,"tag":3500,"props":3599,"children":3600},{"disabled":2649,"type":3502},[],{"type":51,"value":3602}," Client-side interactivity (forms, buttons, modals) works",{"type":45,"tag":76,"props":3604,"children":3606},{"className":3605},[3497],[3607,3610],{"type":45,"tag":3500,"props":3608,"children":3609},{"disabled":2649,"type":3502},[],{"type":51,"value":3611}," Browser back\u002Fforward navigation works correctly",{"type":45,"tag":54,"props":3613,"children":3614},{},[3615],{"type":45,"tag":116,"props":3616,"children":3617},{},[3618],{"type":51,"value":3619},"Routing (if applicable):",{"type":45,"tag":72,"props":3621,"children":3623},{"className":3622},[3492],[3624,3640,3649,3658],{"type":45,"tag":76,"props":3625,"children":3627},{"className":3626},[3497],[3628,3631,3633,3639],{"type":45,"tag":3500,"props":3629,"children":3630},{"disabled":2649,"type":3502},[],{"type":51,"value":3632}," Hash-based routing works (e.g., ",{"type":45,"tag":135,"props":3634,"children":3636},{"className":3635},[],[3637],{"type":51,"value":3638},"#room=abc,key=xyz",{"type":51,"value":2633},{"type":45,"tag":76,"props":3641,"children":3643},{"className":3642},[3497],[3644,3647],{"type":45,"tag":3500,"props":3645,"children":3646},{"disabled":2649,"type":3502},[],{"type":51,"value":3648}," Query parameters are read correctly",{"type":45,"tag":76,"props":3650,"children":3652},{"className":3651},[3497],[3653,3656],{"type":45,"tag":3500,"props":3654,"children":3655},{"disabled":2649,"type":3502},[],{"type":51,"value":3657}," Dynamic routes render with correct params",{"type":45,"tag":76,"props":3659,"children":3661},{"className":3660},[3497],[3662,3665],{"type":45,"tag":3500,"props":3663,"children":3664},{"disabled":2649,"type":3502},[],{"type":51,"value":3666}," 404 pages show for invalid routes",{"type":45,"tag":54,"props":3668,"children":3669},{},[3670],{"type":45,"tag":116,"props":3671,"children":3672},{},[3673],{"type":51,"value":3674},"Real-Time Features (if applicable):",{"type":45,"tag":72,"props":3676,"children":3678},{"className":3677},[3492],[3679,3688,3697],{"type":45,"tag":76,"props":3680,"children":3682},{"className":3681},[3497],[3683,3686],{"type":45,"tag":3500,"props":3684,"children":3685},{"disabled":2649,"type":3502},[],{"type":51,"value":3687}," WebSocket connections establish successfully",{"type":45,"tag":76,"props":3689,"children":3691},{"className":3690},[3497],[3692,3695],{"type":45,"tag":3500,"props":3693,"children":3694},{"disabled":2649,"type":3502},[],{"type":51,"value":3696}," Real-time collaboration or updates work",{"type":45,"tag":76,"props":3698,"children":3700},{"className":3699},[3497],[3701,3704],{"type":45,"tag":3500,"props":3702,"children":3703},{"disabled":2649,"type":3502},[],{"type":51,"value":3705}," Reconnection after disconnect works",{"type":45,"tag":54,"props":3707,"children":3708},{},[3709],{"type":45,"tag":116,"props":3710,"children":3711},{},[3712],{"type":51,"value":3713},"Integrations (if applicable):",{"type":45,"tag":72,"props":3715,"children":3717},{"className":3716},[3492],[3718,3727,3736,3745],{"type":45,"tag":76,"props":3719,"children":3721},{"className":3720},[3497],[3722,3725],{"type":45,"tag":3500,"props":3723,"children":3724},{"disabled":2649,"type":3502},[],{"type":51,"value":3726}," Error monitoring (Sentry) captures errors",{"type":45,"tag":76,"props":3728,"children":3730},{"className":3729},[3497],[3731,3734],{"type":45,"tag":3500,"props":3732,"children":3733},{"disabled":2649,"type":3502},[],{"type":51,"value":3735}," Analytics tracking fires correctly",{"type":45,"tag":76,"props":3737,"children":3739},{"className":3738},[3497],[3740,3743],{"type":45,"tag":3500,"props":3741,"children":3742},{"disabled":2649,"type":3502},[],{"type":51,"value":3744}," Third-party auth (OAuth, Firebase) works",{"type":45,"tag":76,"props":3746,"children":3748},{"className":3747},[3497],[3749,3752],{"type":45,"tag":3500,"props":3750,"children":3751},{"disabled":2649,"type":3502},[],{"type":51,"value":3753}," File uploads work",{"type":45,"tag":54,"props":3755,"children":3756},{},[3757],{"type":45,"tag":116,"props":3758,"children":3759},{},[3760],{"type":51,"value":3761},"PWA (if applicable):",{"type":45,"tag":72,"props":3763,"children":3765},{"className":3764},[3492],[3766,3775,3784],{"type":45,"tag":76,"props":3767,"children":3769},{"className":3768},[3497],[3770,3773],{"type":45,"tag":3500,"props":3771,"children":3772},{"disabled":2649,"type":3502},[],{"type":51,"value":3774}," Service worker registers (production build)",{"type":45,"tag":76,"props":3776,"children":3778},{"className":3777},[3497],[3779,3782],{"type":45,"tag":3500,"props":3780,"children":3781},{"disabled":2649,"type":3502},[],{"type":51,"value":3783}," App is installable",{"type":45,"tag":76,"props":3785,"children":3787},{"className":3786},[3497],[3788,3791],{"type":45,"tag":3500,"props":3789,"children":3790},{"disabled":2649,"type":3502},[],{"type":51,"value":3792}," Offline functionality works as expected",{"type":45,"tag":54,"props":3794,"children":3795},{},[3796],{"type":45,"tag":116,"props":3797,"children":3798},{},[3799],{"type":51,"value":3800},"Performance:",{"type":45,"tag":72,"props":3802,"children":3804},{"className":3803},[3492],[3805,3814,3823,3832],{"type":45,"tag":76,"props":3806,"children":3808},{"className":3807},[3497],[3809,3812],{"type":45,"tag":3500,"props":3810,"children":3811},{"disabled":2649,"type":3502},[],{"type":51,"value":3813}," No hydration mismatch warnings in console",{"type":45,"tag":76,"props":3815,"children":3817},{"className":3816},[3497],[3818,3821],{"type":45,"tag":3500,"props":3819,"children":3820},{"disabled":2649,"type":3502},[],{"type":51,"value":3822}," Images load and are optimized",{"type":45,"tag":76,"props":3824,"children":3826},{"className":3825},[3497],[3827,3830],{"type":45,"tag":3500,"props":3828,"children":3829},{"disabled":2649,"type":3502},[],{"type":51,"value":3831}," Fonts load without FOUT\u002FFOIT issues",{"type":45,"tag":76,"props":3833,"children":3835},{"className":3834},[3497],[3836,3839],{"type":45,"tag":3500,"props":3837,"children":3838},{"disabled":2649,"type":3502},[],{"type":51,"value":3840}," No unexpected console errors or warnings",{"type":45,"tag":3842,"props":3843,"children":3844},"style",{},[3845],{"type":51,"value":3846},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3848,"total":142},[3849],{"slug":4,"name":4,"fn":5,"description":6,"org":3850,"tags":3851,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3852,3853,3854,3855],{"name":23,"slug":24,"type":15},{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"items":3857,"total":4024},[3858,3876,3888,3900,3915,3931,3943,3956,3969,3982,3994,4009],{"slug":3859,"name":3859,"fn":3860,"description":3861,"org":3862,"tags":3863,"stars":3873,"repoUrl":3874,"updatedAt":3875},"agent-browser","automate browser interactions for AI agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3864,3867,3870],{"name":3865,"slug":3866,"type":15},"Agents","agents",{"name":3868,"slug":3869,"type":15},"Automation","automation",{"name":3871,"slug":3872,"type":15},"Browser Automation","browser-automation",38346,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser","2026-07-20T05:55:17.314329",{"slug":3877,"name":3877,"fn":3878,"description":3879,"org":3880,"tags":3881,"stars":3873,"repoUrl":3874,"updatedAt":3887},"agentcore","run browser automation on AWS Bedrock","Run agent-browser on AWS Bedrock AgentCore cloud browsers. Use when the user wants to use AgentCore, run browser automation on AWS, use a cloud browser with AWS credentials, or needs a managed browser session backed by AWS infrastructure. Triggers include \"use agentcore\", \"run on AWS\", \"cloud browser with AWS\", \"bedrock browser\", \"agentcore session\", or any task requiring AWS-hosted browser automation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3882,3883,3886],{"name":3868,"slug":3869,"type":15},{"name":3884,"slug":3885,"type":15},"AWS","aws",{"name":3871,"slug":3872,"type":15},"2026-07-17T06:08:33.665276",{"slug":3889,"name":3889,"fn":3890,"description":3891,"org":3892,"tags":3893,"stars":3873,"repoUrl":3874,"updatedAt":3899},"core","navigate and interact with web pages","Core agent-browser usage guide. Read this before running any agent-browser commands. Covers the snapshot-and-ref workflow, navigating pages, interacting with elements (click, fill, type, select), extracting text and data, taking screenshots, managing tabs, handling forms and auth, waiting for content, running multiple browser sessions in parallel, and troubleshooting common failures. Use when the user asks to interact with a website, fill a form, click something, extract data, take a screenshot, log into a site, test a web app, or automate any browser task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3894,3895,3896],{"name":3865,"slug":3866,"type":15},{"name":3871,"slug":3872,"type":15},{"name":3897,"slug":3898,"type":15},"Navigation","navigation","2026-07-26T05:47:42.378419",{"slug":3901,"name":3901,"fn":3902,"description":3903,"org":3904,"tags":3905,"stars":3873,"repoUrl":3874,"updatedAt":3914},"derive-client","reverse engineer internal APIs from browser traffic","Reverse-engineer a website's internal API by recording browser traffic into a HAR file, then generate a standalone client or CLI that calls the endpoints directly, with no browser needed after the first recording. Use when asked to \"derive a client\", \"build a CLI for \u003Csite>\", \"reverse engineer this site's API\", \"record network requests\", \"turn this site into an API\", or when the same site will be automated repeatedly and direct HTTP calls would beat driving the browser every time.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3906,3909,3910,3911],{"name":3907,"slug":3908,"type":15},"API Development","api-development",{"name":3868,"slug":3869,"type":15},{"name":3871,"slug":3872,"type":15},{"name":3912,"slug":3913,"type":15},"Web Scraping","web-scraping","2026-07-20T06:24:11.928835",{"slug":3916,"name":3916,"fn":3917,"description":3918,"org":3919,"tags":3920,"stars":3873,"repoUrl":3874,"updatedAt":3930},"dogfood","perform exploratory testing on web applications","Systematically explore and test a web application to find bugs, UX issues, and other problems. Use when asked to \"dogfood\", \"QA\", \"exploratory test\", \"find issues\", \"bug hunt\", \"test this app\u002Fsite\u002Fplatform\", or review the quality of a web application. Produces a structured report with full reproduction evidence -- step-by-step screenshots, repro videos, and detailed repro steps for every issue -- so findings can be handed directly to the responsible teams.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3921,3922,3925,3928],{"name":3871,"slug":3872,"type":15},{"name":3923,"slug":3924,"type":15},"Debugging","debugging",{"name":3926,"slug":3927,"type":15},"QA","qa",{"name":664,"slug":3929,"type":15},"testing","2026-07-17T06:07:41.421482",{"slug":3932,"name":3932,"fn":3933,"description":3934,"org":3935,"tags":3936,"stars":3873,"repoUrl":3874,"updatedAt":3942},"electron","automate Electron desktop applications","Automate Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify, etc.) using agent-browser via Chrome DevTools Protocol. Use when the user needs to interact with an Electron app, automate a desktop app, connect to a running app, control a native app, or test an Electron application. Triggers include \"automate Slack app\", \"control VS Code\", \"interact with Discord app\", \"test this Electron app\", \"connect to desktop app\", or any task requiring automation of a native Electron application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3937,3938,3939],{"name":3865,"slug":3866,"type":15},{"name":3871,"slug":3872,"type":15},{"name":3940,"slug":3941,"type":15},"Desktop","desktop","2026-07-17T06:08:28.007783",{"slug":3944,"name":3944,"fn":3945,"description":3946,"org":3947,"tags":3948,"stars":3873,"repoUrl":3874,"updatedAt":3955},"slack","interact with Slack workspaces","Interact with Slack workspaces using browser automation. Use when the user needs to check unread channels, navigate Slack, send messages, extract data, find information, search conversations, or automate any Slack task. Triggers include \"check my Slack\", \"what channels have unreads\", \"send a message to\", \"search Slack for\", \"extract from Slack\", \"find who said\", or any task requiring programmatic Slack interaction.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3949,3950,3953],{"name":3871,"slug":3872,"type":15},{"name":3951,"slug":3952,"type":15},"Messaging","messaging",{"name":3954,"slug":3944,"type":15},"Slack","2026-07-17T06:08:27.679015",{"slug":3957,"name":3957,"fn":3958,"description":3959,"org":3960,"tags":3961,"stars":3873,"repoUrl":3874,"updatedAt":3968},"vercel-sandbox","run browser automation in Vercel Sandbox","Run agent-browser + Chrome inside Vercel Sandbox microVMs for browser automation from any Vercel-deployed app. Use when the user needs browser automation in a Vercel app (Next.js, SvelteKit, Nuxt, Remix, Astro, etc.), wants to run headless Chrome without binary size limits, needs persistent browser sessions across commands, or wants ephemeral isolated browser environments. Triggers include \"Vercel Sandbox browser\", \"microVM Chrome\", \"agent-browser in sandbox\", \"browser automation on Vercel\", or any task requiring Chrome in a Vercel Sandbox.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3962,3963,3964,3965],{"name":3868,"slug":3869,"type":15},{"name":3871,"slug":3872,"type":15},{"name":664,"slug":3929,"type":15},{"name":3966,"slug":3967,"type":15},"Vercel","vercel","2026-07-17T06:08:28.349899",{"slug":3970,"name":3970,"fn":3971,"description":3972,"org":3973,"tags":3974,"stars":3979,"repoUrl":3980,"updatedAt":3981},"deploy-to-vercel","deploy applications to Vercel","Deploy applications and websites to Vercel. Use when the user requests deployment actions like \"deploy my app\", \"deploy and give me the link\", \"push this live\", or \"create a preview deployment\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3975,3978],{"name":3976,"slug":3977,"type":15},"Deployment","deployment",{"name":3966,"slug":3967,"type":15},28993,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills","2026-07-17T06:08:41.18374",{"slug":3983,"name":3983,"fn":3984,"description":3985,"org":3986,"tags":3987,"stars":3979,"repoUrl":3980,"updatedAt":3993},"vercel-cli-with-tokens","manage Vercel projects via CLI","Deploy and manage projects on Vercel using token-based authentication. Use when working with Vercel CLI using access tokens rather than interactive login — e.g. \"deploy to vercel\", \"set up vercel\", \"add environment variables to vercel\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3988,3991,3992],{"name":3989,"slug":3990,"type":15},"CLI","cli",{"name":3976,"slug":3977,"type":15},{"name":3966,"slug":3967,"type":15},"2026-07-17T06:08:41.84179",{"slug":3995,"name":3995,"fn":3996,"description":3997,"org":3998,"tags":3999,"stars":3979,"repoUrl":3980,"updatedAt":4008},"vercel-composition-patterns","implement scalable React composition patterns","React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4000,4003,4004,4005],{"name":4001,"slug":4002,"type":15},"Best Practices","best-practices",{"name":23,"slug":24,"type":15},{"name":13,"slug":14,"type":15},{"name":4006,"slug":4007,"type":15},"UI Components","ui-components","2026-07-17T06:05:40.576913",{"slug":4010,"name":4010,"fn":4011,"description":4012,"org":4013,"tags":4014,"stars":3979,"repoUrl":3980,"updatedAt":4023},"vercel-optimize","optimize Vercel project performance and costs","Use for Vercel cost and performance optimization on deployed projects, especially Next.js, SvelteKit, Nuxt, and limited Astro apps. Collect Vercel metrics, usage, project config, and code scan results first; investigate only metric-backed candidates; produce ranked recommendations grounded in verified files and version-aware Vercel\u002Fframework docs. Trigger for Vercel bill reduction, slow or expensive routes, caching opportunities, Function Invocations, Build Minutes, Fast Data Transfer, Core Web Vitals, Bot Management, Fluid compute, or cost breakdown requests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[4015,4018,4019,4022],{"name":4016,"slug":4017,"type":15},"Cost Optimization","cost-optimization",{"name":3976,"slug":3977,"type":15},{"name":4020,"slug":4021,"type":15},"Performance","performance",{"name":3966,"slug":3967,"type":15},"2026-07-17T06:04:08.327515",100]