garage-erp/apps/dashboard/next.config.mjs

29 lines
655 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'newgarage.yslootahtech.com',
port: '',
pathname: '/**',
},
{
protocol: 'http',
hostname: 'reparee.test',
port: '',
pathname: '/**',
},
{
protocol: 'https',
hostname: 'reparee.test',
port: '',
pathname: '/**',
}
]
}
}
export default nextConfig