35 lines
868 B
JavaScript
35 lines
868 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: '/**',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: process.env.NEXT_PUBLIC_GARAGE_HOST_PATTERN ?? '*.reparee.com',
|
|
port: '',
|
|
pathname: '/**',
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
export default nextConfig
|