Roo-Code/apps/web-evals/next.config.js
Roo Code 65785774c5 fix: improve codebase indexing error messages for better user experience
- Enhanced validation helpers to detect and format "fetch failed" errors with specific context
- Added Gemini-specific error handling with actionable guidance for common issues
- Improved orchestrator error messages to provide clearer troubleshooting information
- Enhanced Qdrant connection error messages with specific setup instructions
- Added new translation keys for better error messaging

Fixes #5801
2025-07-17 05:59:47 +00:00

9 lines
275 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var nextConfig = {
webpack: function (config) {
config.resolve.extensionAlias = { ".js": [".ts", ".tsx", ".js", ".jsx"] };
return config;
},
};
exports.default = nextConfig;