18 lines
318 B
TypeScript
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
|