Made code compile during build even when then environment variable is not yet available Co-authored-by: Ady Beraud <a.beraud96@gmail.com>
16 lines
458 B
TypeScript
16 lines
458 B
TypeScript
import { ContentContainer } from './_components/ui/layout/ContentContainer';
|
|
|
|
export const dynamic = 'force-dynamic';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<ContentContainer>
|
|
<div style={{ minHeight: '60vh', marginTop: '50px' }}>
|
|
Part of the website is built directly with Framer, including the
|
|
homepage. <br />
|
|
We use Clouflare to split the traffic between the two sites.
|
|
</div>
|
|
</ContentContainer>
|
|
);
|
|
}
|