mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-08 22:21:23 +00:00
- Add automaticVercelMonitors: false to Next.js configs for web-evals and web-roo-code - Create .vercelignore files to prevent accidental Vercel deployments - Add comprehensive deployment documentation with Vercel warnings Addresses comment: https://github.com/RooCodeInc/Roo-Code-Cloud/pull/190#issuecomment-3029245688 ✅ Linting passes ✅ Type checking passes ✅ No breaking changes to existing functionality
12 lines
329 B
TypeScript
12 lines
329 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
const nextConfig: NextConfig = {
|
|
// Disable Vercel automatic monitoring to prevent accidental deployments
|
|
automaticVercelMonitors: false,
|
|
webpack: (config) => {
|
|
config.resolve.extensionAlias = { ".js": [".ts", ".tsx", ".js", ".jsx"] }
|
|
return config
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|