Files
ckeproekt/next.config.js
Bivekich 8ee7bc896d fix env
2025-08-06 12:51:55 +03:00

30 lines
664 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
eslint: {
// Отключаем ESLint при сборке для продакшена
ignoreDuringBuilds: true,
},
typescript: {
// Игнорируем ошибки TypeScript при сборке для продакшена
ignoreBuildErrors: true,
},
images: {
domains: ['localhost'],
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
{
protocol: 'https',
hostname: 's3.twcstorage.ru',
port: '',
pathname: '/**',
},
],
},
output: 'standalone',
};
module.exports = nextConfig;