Files
tripwithbonus/frontend/next.config.ts
2025-05-14 15:19:02 +03:00

15 lines
233 B
TypeScript

import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'via.placeholder.com',
},
],
},
}
export default nextConfig