mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-21 21:06:20 +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") {
|
||||
return <Maintenance />;
|
||||
}
|
||||
|
||||
return (
|
||||
<PlausibleProvider
|
||||
domain="rallly.co"
|
||||
customDomain={process.env.PLAUSIBLE_DOMAIN}
|
||||
customDomain={process.env.NEXT_PUBLIC_PLAUSIBLE_DOMAIN}
|
||||
trackOutboundLinks={true}
|
||||
selfHosted={true}
|
||||
enabled={!!process.env.PLAUSIBLE_DOMAIN}
|
||||
enabled={!!process.env.NEXT_PUBLIC_PLAUSIBLE_DOMAIN}
|
||||
>
|
||||
<DefaultSeo
|
||||
openGraph={{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue