garage-erp/apps/dashboard/next.config.mjs
2026-04-06 02:32:47 +03:00

17 lines
326 B
JavaScript

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