jonbio/components/Image.tsx
2024-07-10 10:30:29 +02:00

10 lines
224 B
TypeScript

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