jonbio/components/Image.tsx

10 lines
224 B
TypeScript
Raw Normal View History

2023-07-07 11:17:22 +08:00
import NextImage, { ImageProps } from 'next/image'
2024-07-07 17:29:51 +02:00
const basePath = process.env.BASE_PATH
const Image = ({ src, ...rest }: ImageProps) => (
<NextImage src={`${basePath || ''}${src}`} {...rest} />
)
2023-07-07 11:17:22 +08:00
export default Image