Files
twenty/packages/twenty-front/src/modules/ui/utilities/server-preconnect/components/ServerPreconnect.tsx

13 lines
258 B
TypeScript

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