From 39ffcfd77cf6615d2019bfa372e37db04ef2ab39 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Wed, 23 Nov 2022 18:54:56 +0800 Subject: [PATCH] Remove all references to the previous site configuration I really need to rewrite this from scratch. --- site/src/components/Image.jsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/site/src/components/Image.jsx b/site/src/components/Image.jsx index 67ec69b..51084c4 100644 --- a/site/src/components/Image.jsx +++ b/site/src/components/Image.jsx @@ -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 ( - + ); };