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