/
githubmirror
/
localGPT
Обзор
Документация
Войти
/
githubmirror
/
localGPT
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
next.config.ts
15 строк
450 B
PromptEngineer
Integrate multimodal RAG codebase
11 июл 2025, 10:17
11 июл 2025, 10:17
2421514
Код
Авторство
О чём код?
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;