/
indievid
/
Meteo
Обзор
Документация
Войти
/
indievid
/
Meteo
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
dev
next.config.mjs
42 строки
816 B
studio-agent
Squash 'studio-workflow-1d94a027-8736-47ef-9eea-d2b1081d0bbe' into dev
25 июл 2026, 12:40
25 июл 2026, 12:40
fa4c960
Код
Авторство
О чём код?
/** @type {import('next').NextConfig} */ const nextConfig = { // Performance optimizations env: { NEXT_TELEMETRY_DISABLED: "1", SWC_CACHE: "1", WEBPACK_CACHE: "memory", }, output: "export", trailingSlash: true, images: { unoptimized: true, remotePatterns: [], }, typescript: { ignoreBuildErrors: true, }, distDir: ".next", experimental: {}, onDemandEntries: { maxInactiveAge: 60 * 1000, pagesBufferLength: 2, }, turbopack: { root: "/", }, webpack: (config) => { config.resolve.fallback = { ...config.resolve.fallback, canvas: false, encoding: false, }; config.watchOptions = { poll: 1000, aggregateTimeout: 300, ignored: /node_modules/, }; return config; }, }; export default nextConfig;