Skip to content

Commit

Permalink
fix(plausible): Domain fixed and proxy added
Browse files Browse the repository at this point in the history
  • Loading branch information
lludol committed Sep 15, 2024
1 parent 12992a1 commit 6b1a2fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/blandui-landing/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function RootLayout({
return (
<html lang="en">
<head>
<PlausibleProvider domain="blandui.up.railway.app" customDomain='plausible-analytics-pulpopush.up.railway.app' selfHosted/>
<PlausibleProvider domain="blandui.up.railway.app" customDomain='https://plausible-analytics-pulpopush.up.railway.app' selfHosted/>
</head>
<body className={`${firaSans.className} antialiased bg-surface-4`}>
<Header />
Expand Down
4 changes: 3 additions & 1 deletion apps/blandui-landing/next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import { withPlausibleProxy } from 'next-plausible';

/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = withPlausibleProxy()({});

export default nextConfig;

0 comments on commit 6b1a2fa

Please sign in to comment.