jonbio/components/Image.tsx

10 lines
224 B
TypeScript
Raw Permalink Normal View History

2024-10-14 00:18:50 -05:00
import NextImage, { ImageProps } from 'next/image'
const basePath = process.env.BASE_PATH
const Image = ({ src, ...rest }: ImageProps) => (
<NextImage src={`${basePath || ''}${src}`} {...rest} />
)
export default Image