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 (
-
+
);
};