mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Revert to pre-AI-SDK state (commit67e568f6b) This commit reverts the codebase to the state before AI SDK migration work began. Target commit:67e568f6b- refactor: replace fetch_instructions with skill tool and built-in skills (#10913) Date: January 29, 2026 This removes approximately 152 commits of AI SDK migration work. A follow-up PR will add back bug fixes and features that are unrelated to AI SDK. Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
39 lines
981 B
TypeScript
39 lines
981 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
const nextConfig: NextConfig = {
|
|
webpack: (config) => {
|
|
config.resolve.extensionAlias = { ".js": [".ts", ".tsx", ".js", ".jsx"] }
|
|
return config
|
|
},
|
|
async redirects() {
|
|
return [
|
|
// Redirect www to non-www
|
|
{
|
|
source: "/:path*",
|
|
has: [{ type: "host", value: "www.roocode.com" }],
|
|
destination: "https://roocode.com/:path*",
|
|
permanent: true,
|
|
},
|
|
// Redirect HTTP to HTTPS
|
|
{
|
|
source: "/:path*",
|
|
has: [{ type: "header", key: "x-forwarded-proto", value: "http" }],
|
|
destination: "https://roocode.com/:path*",
|
|
permanent: true,
|
|
},
|
|
// Redirect cloud waitlist to Notion page (kept for extension compatibility)
|
|
{
|
|
source: "/cloud-waitlist",
|
|
destination: "https://roo-code.notion.site/238fd1401b0a8087b858e1ad431507cf?pvs=105",
|
|
permanent: false,
|
|
},
|
|
{
|
|
source: "/provider/pricing",
|
|
destination: "/provider",
|
|
permanent: true,
|
|
},
|
|
]
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|