SFS/next.config.mjs
2025-12-16 10:03:26 +05:30

32 lines
605 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
remotePatterns: [
{
protocol: 'http',
hostname: '160.187.167.213',
port: '',
pathname: '/uploads/**',
},
{
protocol: 'https',
hostname: '160.187.167.213',
port: '',
pathname: '/uploads/**',
},
{
protocol: 'http',
hostname: '192.168.1.19',
port: '1337',
pathname: '/uploads/**',
},
],
},
}
export default nextConfig