mirror of
https://github.com/documenso/documenso
synced 2026-05-24 09:28:27 +00:00
fix: missing marketing env variables
This commit is contained in:
parent
0b83671c78
commit
0900836040
1 changed files with 3 additions and 0 deletions
|
|
@ -2,6 +2,8 @@ import { Suspense } from 'react';
|
|||
|
||||
import { Caveat, Inter } from 'next/font/google';
|
||||
|
||||
import { PublicEnvScript } from 'next-runtime-env';
|
||||
|
||||
import { FeatureFlagProvider } from '@documenso/lib/client-only/providers/feature-flag';
|
||||
import { NEXT_PUBLIC_MARKETING_URL } from '@documenso/lib/constants/app';
|
||||
import { getAllAnonymousFlags } from '@documenso/lib/universal/get-feature-flag';
|
||||
|
|
@ -62,6 +64,7 @@ export default async function RootLayout({ children }: { children: React.ReactNo
|
|||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
||||
<link rel="manifest" href="/site.webmanifest" />
|
||||
<PublicEnvScript />
|
||||
</head>
|
||||
|
||||
<Suspense>
|
||||
|
|
|
|||
Loading…
Reference in a new issue