Files
tripwithbonus/frontend/next.config.ts
2025-05-15 18:26:23 +03:00

18 lines
318 B
TypeScript

import type { NextConfig } from 'next'
const API_URL =
process.env.NEXT_PUBLIC_API_URL || 'http://127.0.0.1:8000/api/v1'
const nextConfig: NextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'via.placeholder.com',
},
],
},
}
export default nextConfig