localGPT/next.config.ts
PromptEngineer 2421514f3e Integrate multimodal RAG codebase
- Replaced existing localGPT codebase with multimodal RAG implementation
- Includes full-stack application with backend, frontend, and RAG system
- Added Docker support and comprehensive documentation
- Enhanced with multimodal capabilities for document processing
- Preserved git history for localGPT while integrating new functionality
2025-07-11 00:17:15 -07:00

16 lines
450 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
eslint: {
// Warning: This allows production builds to successfully complete even if your project has ESLint errors.
ignoreDuringBuilds: true,
},
typescript: {
// Warning: This allows production builds to successfully complete even if your project has type errors.
ignoreBuildErrors: true,
},
};
export default nextConfig;