Remove server preconnect (#11752)

Fixes #11738
This commit is contained in:
Félix Malfait
2025-04-26 08:23:28 +02:00
committed by GitHub
parent 7752b8b06f
commit bb8fa02899
2 changed files with 0 additions and 14 deletions

View File

@ -1,12 +0,0 @@
import { Helmet } from 'react-helmet-async';
export const ServerPreconnect = () => {
return (
<Helmet>
<link
rel="preconnect"
href={process.env.REACT_APP_SERVER_BASE_URL || 'http://localhost:3000'}
/>
</Helmet>
);
};