Closed maximedeoliveira closed 6 months ago
Every time I hit refresh on a page, plausible count it as new visitor. Do I need to configure something else, to make unique count works as expected ?
next.config.mjs
import {withPlausibleProxy} from "next-plausible"; /** @type {import('next').NextConfig} */ const nextConfig = {}; export default withPlausibleProxy({customDomain: 'https://analytics.****.fr',})(nextConfig);
app/layout.tsx
<html lang="fr"> <head> <PlausibleProvider domain="gpro.app" selfHosted={true} enabled={true} /> </head> </html>
package.json
"next": "14.1.0", "next-plausible": "^3.12.0"
There is nothing else to configure. I would recommend you to read how plausible counts single visits and check if everything makes sense to you and your setup.
Every time I hit refresh on a page, plausible count it as new visitor. Do I need to configure something else, to make unique count works as expected ?
next.config.mjs
app/layout.tsx
package.json