Remove all references to the previous site configuration

I really need to rewrite this from scratch.
This commit is contained in:
Gabriel Arazas 2022-11-23 18:54:56 +08:00
parent fee8004df6
commit 39ffcfd77c

View File

@ -1,10 +1,8 @@
import React from 'react';
import config from '../../next.config.js';
const MyImage = ({ src, width, height, ...props }) => {
const _src = `${config.basePath}${src}`
return (
<img src={_src} placeholder="blur"/>
<img src={src} placeholder="blur"/>
);
};