mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-22 21:36:25 +02:00
Make plausible domain public (#420)
This commit is contained in:
parent
8c16966907
commit
7ddea9005c
1 changed files with 3 additions and 2 deletions
|
@ -22,13 +22,14 @@ const MyApp: NextPage<AppProps> = ({ Component, pageProps }) => {
|
||||||
if (process.env.NEXT_PUBLIC_MAINTENANCE_MODE === "1") {
|
if (process.env.NEXT_PUBLIC_MAINTENANCE_MODE === "1") {
|
||||||
return <Maintenance />;
|
return <Maintenance />;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<PlausibleProvider
|
<PlausibleProvider
|
||||||
domain="rallly.co"
|
domain="rallly.co"
|
||||||
customDomain={process.env.PLAUSIBLE_DOMAIN}
|
customDomain={process.env.NEXT_PUBLIC_PLAUSIBLE_DOMAIN}
|
||||||
trackOutboundLinks={true}
|
trackOutboundLinks={true}
|
||||||
selfHosted={true}
|
selfHosted={true}
|
||||||
enabled={!!process.env.PLAUSIBLE_DOMAIN}
|
enabled={!!process.env.NEXT_PUBLIC_PLAUSIBLE_DOMAIN}
|
||||||
>
|
>
|
||||||
<DefaultSeo
|
<DefaultSeo
|
||||||
openGraph={{
|
openGraph={{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue