Files
www/src/components/optimized-image.tsx
2025-04-11 17:34:09 +02:00

15 lines
370 B
TypeScript

'use client'
import { CDN_URL } from '@/shared/constants'
import type { ComponentPropsWithoutRef } from 'react'
export function OptimizedImage(props: ComponentPropsWithoutRef<'img'>) {
const isDev = process.env.NODE_ENV === 'development'
if (isDev) {
return <img {...props} />
}
return <img {...props} src={`${CDN_URL}${props.src}`} alt={props.alt} />
}