mirror of
https://github.com/zebrajr/localGPT.git
synced 2025-12-06 00:20:19 +01:00
- 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
16 lines
450 B
TypeScript
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;
|